pub enum ChannelWidth {
TwentyOrFourtyMHz,
EightyOneSixtyOrEightyPlusEightyMhz,
OneSixtyMHz,
NonContiguousEightyPlusEightyMHz,
Unknown(u8),
}Variants§
TwentyOrFourtyMHz
EightyOneSixtyOrEightyPlusEightyMhz
OneSixtyMHz
NonContiguousEightyPlusEightyMHz
Unknown(u8)
Implementations§
Trait Implementations§
Source§impl Clone for ChannelWidth
impl Clone for ChannelWidth
Source§fn clone(&self) -> ChannelWidth
fn clone(&self) -> ChannelWidth
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 ChannelWidth
impl Debug for ChannelWidth
Source§impl From<ChannelWidth> for u128
impl From<ChannelWidth> for u128
Source§fn from(value: ChannelWidth) -> Self
fn from(value: ChannelWidth) -> Self
Converts to this type from the input type.
Source§impl From<ChannelWidth> for u16
impl From<ChannelWidth> for u16
Source§fn from(value: ChannelWidth) -> Self
fn from(value: ChannelWidth) -> Self
Converts to this type from the input type.
Source§impl From<ChannelWidth> for u32
impl From<ChannelWidth> for u32
Source§fn from(value: ChannelWidth) -> Self
fn from(value: ChannelWidth) -> Self
Converts to this type from the input type.
Source§impl From<ChannelWidth> for u64
impl From<ChannelWidth> for u64
Source§fn from(value: ChannelWidth) -> Self
fn from(value: ChannelWidth) -> Self
Converts to this type from the input type.
Source§impl From<ChannelWidth> for u8
impl From<ChannelWidth> for u8
Source§fn from(value: ChannelWidth) -> Self
fn from(value: ChannelWidth) -> Self
Converts to this type from the input type.
Source§impl From<u128> for ChannelWidth
impl From<u128> for ChannelWidth
Source§impl From<u16> for ChannelWidth
impl From<u16> for ChannelWidth
Source§impl From<u32> for ChannelWidth
impl From<u32> for ChannelWidth
Source§impl From<u64> for ChannelWidth
impl From<u64> for ChannelWidth
Source§impl From<u8> for ChannelWidth
impl From<u8> for ChannelWidth
Source§impl Hash for ChannelWidth
impl Hash for ChannelWidth
Source§impl PartialEq for ChannelWidth
impl PartialEq for ChannelWidth
impl Copy for ChannelWidth
impl Eq for ChannelWidth
impl StructuralPartialEq for ChannelWidth
Auto Trait Implementations§
impl Freeze for ChannelWidth
impl RefUnwindSafe for ChannelWidth
impl Send for ChannelWidth
impl Sync for ChannelWidth
impl Unpin for ChannelWidth
impl UnwindSafe for ChannelWidth
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