pub enum HTProtectionMode {
None,
NonMember,
TwentyMHz,
NonHTMixed,
Unknown(u8),
}Variants§
None
No protection mode.
NonMember
Nonmember protection mode.
TwentyMHz
20MHz protection mode.
NonHTMixed
Non-HT mixed mode.
Unknown(u8)
Implementations§
Trait Implementations§
Source§impl Clone for HTProtectionMode
impl Clone for HTProtectionMode
Source§fn clone(&self) -> HTProtectionMode
fn clone(&self) -> HTProtectionMode
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 HTProtectionMode
impl Debug for HTProtectionMode
Source§impl Default for HTProtectionMode
impl Default for HTProtectionMode
Source§fn default() -> HTProtectionMode
fn default() -> HTProtectionMode
Returns the “default value” for a type. Read more
Source§impl Format for HTProtectionMode
impl Format for HTProtectionMode
Source§impl From<HTProtectionMode> for u128
impl From<HTProtectionMode> for u128
Source§fn from(value: HTProtectionMode) -> Self
fn from(value: HTProtectionMode) -> Self
Converts to this type from the input type.
Source§impl From<HTProtectionMode> for u16
impl From<HTProtectionMode> for u16
Source§fn from(value: HTProtectionMode) -> Self
fn from(value: HTProtectionMode) -> Self
Converts to this type from the input type.
Source§impl From<HTProtectionMode> for u32
impl From<HTProtectionMode> for u32
Source§fn from(value: HTProtectionMode) -> Self
fn from(value: HTProtectionMode) -> Self
Converts to this type from the input type.
Source§impl From<HTProtectionMode> for u64
impl From<HTProtectionMode> for u64
Source§fn from(value: HTProtectionMode) -> Self
fn from(value: HTProtectionMode) -> Self
Converts to this type from the input type.
Source§impl From<HTProtectionMode> for u8
impl From<HTProtectionMode> for u8
Source§fn from(value: HTProtectionMode) -> Self
fn from(value: HTProtectionMode) -> Self
Converts to this type from the input type.
Source§impl From<u128> for HTProtectionMode
impl From<u128> for HTProtectionMode
Source§impl From<u16> for HTProtectionMode
impl From<u16> for HTProtectionMode
Source§impl From<u32> for HTProtectionMode
impl From<u32> for HTProtectionMode
Source§impl From<u64> for HTProtectionMode
impl From<u64> for HTProtectionMode
Source§impl From<u8> for HTProtectionMode
impl From<u8> for HTProtectionMode
Source§impl Hash for HTProtectionMode
impl Hash for HTProtectionMode
Source§impl PartialEq for HTProtectionMode
impl PartialEq for HTProtectionMode
impl Copy for HTProtectionMode
impl Eq for HTProtectionMode
impl StructuralPartialEq for HTProtectionMode
Auto Trait Implementations§
impl Freeze for HTProtectionMode
impl RefUnwindSafe for HTProtectionMode
impl Send for HTProtectionMode
impl Sync for HTProtectionMode
impl Unpin for HTProtectionMode
impl UnwindSafe for HTProtectionMode
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