#[repr(u8)]pub enum AssociationFailureCause {
Unknown = 0,
Associationfailed = 1,
Authenticationfailed = 2,
Ssidnotfound = 3,
}Variants§
Unknown = 0
The reason for the failure is unknown.
Associationfailed = 1
An error occurred during association.
Authenticationfailed = 2
An error occurred during authentication.
Ssidnotfound = 3
The specified SSID could not be found.
Implementations§
Trait Implementations§
Source§impl Clone for AssociationFailureCause
impl Clone for AssociationFailureCause
Source§fn clone(&self) -> AssociationFailureCause
fn clone(&self) -> AssociationFailureCause
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Debug for AssociationFailureCause
impl Debug for AssociationFailureCause
Source§impl<'de> Deserialize<'de> for AssociationFailureCause
impl<'de> Deserialize<'de> for AssociationFailureCause
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Source§impl From<AssociationFailureCause> for u8
impl From<AssociationFailureCause> for u8
Source§fn from(val: AssociationFailureCause) -> Self
fn from(val: AssociationFailureCause) -> Self
Converts to this type from the input type.
Source§impl PartialEq for AssociationFailureCause
impl PartialEq for AssociationFailureCause
Source§impl Serialize for AssociationFailureCause
impl Serialize for AssociationFailureCause
impl Copy for AssociationFailureCause
impl Eq for AssociationFailureCause
impl StructuralPartialEq for AssociationFailureCause
Auto Trait Implementations§
impl Freeze for AssociationFailureCause
impl RefUnwindSafe for AssociationFailureCause
impl Send for AssociationFailureCause
impl Sync for AssociationFailureCause
impl Unpin for AssociationFailureCause
impl UnwindSafe for AssociationFailureCause
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more