#[repr(C)]
pub struct ReasonCode(pub u16);

Tuple Fields§

§0: u16

Implementations§

source§

impl ReasonCode

source

pub const UNSPECIFIED_REASON: Self = _

source

pub const INVALID_AUTHENTICATION: Self = _

source

pub const LEAVING_NETWORK_DEAUTH: Self = _

source

pub const REASON_INACTIVITY: Self = _

source

pub const NO_MORE_STAS: Self = _

source

pub const INVALID_CLASS2_FRAME: Self = _

source

pub const INVALID_CLASS3_FRAME: Self = _

source

pub const LEAVING_NETWORK_DISASSOC: Self = _

source

pub const NOT_AUTHENTICATED: Self = _

source

pub const UNACCEPTABLE_POWER_CAPABILITY: Self = _

source

pub const UNACCEPTABLE_SUPPORTED_CHANNELS: Self = _

source

pub const BSS_TRANSITION_DISASSOC: Self = _

source

pub const REASON_INVALID_ELEMENT: Self = _

source

pub const MIC_FAILURE: Self = _

source

pub const FOURWAY_HANDSHAKE_TIMEOUT: Self = _

source

pub const GK_HANDSHAKE_TIMEOUT: Self = _

source

pub const HANDSHAKE_ELEMENT_MISMATCH: Self = _

source

pub const REASON_INVALID_GROUP_CIPHER: Self = _

source

pub const REASON_INVALID_PAIRWISE_CIPHER: Self = _

source

pub const REASON_INVALID_AKMP: Self = _

source

pub const UNSUPPORTED_RSNE_VERSION: Self = _

source

pub const INVALID_RSNE_CAPABILITIES: Self = _

source

pub const IEEE802_1_X_AUTH_FAILED: Self = _

source

pub const REASON_CIPHER_OUT_OF_POLICY: Self = _

source

pub const TDLS_PEER_UNREACHABLE: Self = _

source

pub const TDLS_UNSPECIFIED_REASON: Self = _

source

pub const SSP_REQUESTED_DISASSOC: Self = _

source

pub const NO_SSP_ROAMING_AGREEMENT: Self = _

source

pub const BAD_CIPHER_OR_AKM: Self = _

source

pub const NOT_AUTHORIZED_THIS_LOCATION: Self = _

source

pub const SERVICE_CHANGE_PRECLUDES_TS: Self = _

source

pub const UNSPECIFIED_QOS_REASON: Self = _

source

pub const NOT_ENOUGH_BANDWIDTH: Self = _

source

pub const MISSING_ACKS: Self = _

source

pub const EXCEEDED_TXOP: Self = _

source

pub const STA_LEAVING: Self = _

source

pub const END_TS_BA_DLS: Self = _

source

pub const UNKNOWN_TS_BA: Self = _

source

pub const TIMEOUT: Self = _

source

pub const PEERKEY_MISMATCH: Self = _

source

pub const PEER_INITIATED: Self = _

source

pub const AP_INITIATED: Self = _

source

pub const REASON_INVALID_FT_ACTION_FRAME_COUNT: Self = _

source

pub const REASON_INVALID_PMKID: Self = _

source

pub const REASON_INVALID_MDE: Self = _

source

pub const REASON_INVALID_FTE: Self = _

source

pub const MESH_PEERING_CANCELED: Self = _

source

pub const MESH_MAX_PEERS: Self = _

source

pub const MESH_CONFIGURATION_POLICY_VIOLATION: Self = _

source

pub const MESH_CLOSE_RCVD: Self = _

source

pub const MESH_MAX_RETRIES: Self = _

source

pub const MESH_CONFIRM_TIMEOUT: Self = _

source

pub const MESH_INVALID_GTK: Self = _

source

pub const MESH_INCONSISTENT_PARAMETERS: Self = _

source

pub const MESH_INVALID_SECURITY_CAPABILITY: Self = _

source

pub const MESH_PATH_ERROR_NO_PROXY_INFORMATION: Self = _

source

pub const MESH_PATH_ERROR_NO_FORWARDING_INFORMATION: Self = _

source

pub const MESH_PATH_ERROR_DESTINATION_UNREACHABLE: Self = _

source

pub const MAC_ADDRESS_ALREADY_EXISTS_IN_MBSS: Self = _

source

pub const MESH_CHANNEL_SWITCH_REGULATORY_REQUIREMENTS: Self = _

source

pub const MESH_CHANNEL_SWITCH_UNSPECIFIED: Self = _

source

pub const FW_RX_STALLED: Self = _

source

pub const FW_HIGH_WME_RX_ERR_RATE: Self = _

Trait Implementations§

source§

impl BitAnd for ReasonCode

§

type Output = ReasonCode

The resulting type after applying the & operator.
source§

fn bitand(self, rhs: Self) -> Self

Performs the & operation. Read more
source§

impl BitAndAssign for ReasonCode

source§

fn bitand_assign(&mut self, rhs: Self)

Performs the &= operation. Read more
source§

impl BitOr for ReasonCode

§

type Output = ReasonCode

The resulting type after applying the | operator.
source§

fn bitor(self, rhs: Self) -> Self

Performs the | operation. Read more
source§

impl BitOrAssign for ReasonCode

source§

fn bitor_assign(&mut self, rhs: Self)

Performs the |= operation. Read more
source§

impl BitXor for ReasonCode

§

type Output = ReasonCode

The resulting type after applying the ^ operator.
source§

fn bitxor(self, rhs: Self) -> Self

Performs the ^ operation. Read more
source§

impl BitXorAssign for ReasonCode

source§

fn bitxor_assign(&mut self, rhs: Self)

Performs the ^= operation. Read more
source§

impl Clone for ReasonCode

source§

fn clone(&self) -> ReasonCode

Returns a copy of the value. Read more
1.0.0 · source§

fn clone_from(&mut self, source: &Self)

Performs copy-assignment from source. Read more
source§

impl Debug for ReasonCode

source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
source§

impl PartialEq for ReasonCode

source§

fn eq(&self, other: &ReasonCode) -> bool

This method tests for self and other values to be equal, and is used by ==.
1.0.0 · source§

fn ne(&self, other: &Rhs) -> bool

This method tests for !=. The default implementation is almost always sufficient, and should not be overridden without very good reason.
source§

impl Copy for ReasonCode

source§

impl Eq for ReasonCode

source§

impl StructuralPartialEq for ReasonCode

Auto Trait Implementations§

Blanket Implementations§

source§

impl<T> Any for T
where T: 'static + ?Sized,

source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
source§

impl<T> Borrow<T> for T
where T: ?Sized,

source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
source§

impl<T> BorrowMut<T> for T
where T: ?Sized,

source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
source§

impl<T> From<T> for T

source§

fn from(t: T) -> T

Returns the argument unchanged.

source§

impl<T, U> Into<U> for T
where U: From<T>,

source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

source§

impl<T> ToOwned for T
where T: Clone,

§

type Owned = T

The resulting type after obtaining ownership.
source§

fn to_owned(&self) -> T

Creates owned data from borrowed data, usually by cloning. Read more
source§

fn clone_into(&self, target: &mut T)

Uses borrowed data to replace owned data, usually by cloning. Read more
source§

impl<T, U> TryFrom<U> for T
where U: Into<T>,

§

type Error = Infallible

The type returned in the event of a conversion error.
source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
source§

impl<T, U> TryInto<U> for T
where U: TryFrom<T>,

§

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.
source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.