#[repr(u8)]pub enum WifiSecondChan {
None = 0,
Above = 1,
Below = 2,
}
Expand description
Variants§
Trait Implementations§
Source§impl Clone for WifiSecondChan
impl Clone for WifiSecondChan
Source§fn clone(&self) -> WifiSecondChan
fn clone(&self) -> WifiSecondChan
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 Default for WifiSecondChan
impl Default for WifiSecondChan
Source§fn default() -> WifiSecondChan
fn default() -> WifiSecondChan
Returns the “default value” for a type. Read more
Source§impl Format for WifiSecondChan
impl Format for WifiSecondChan
Source§impl PartialEq for WifiSecondChan
impl PartialEq for WifiSecondChan
Source§impl TryFrom<u8> for WifiSecondChan
impl TryFrom<u8> for WifiSecondChan
Source§type Error = TryFromPrimitiveError<WifiSecondChan>
type Error = TryFromPrimitiveError<WifiSecondChan>
The type returned in the event of a conversion error.
Source§impl TryFromPrimitive for WifiSecondChan
impl TryFromPrimitive for WifiSecondChan
const NAME: &'static str = "WifiSecondChan"
type Primitive = u8
type Error = TryFromPrimitiveError<WifiSecondChan>
fn try_from_primitive( number: Self::Primitive, ) -> Result<Self, TryFromPrimitiveError<Self>>
impl Copy for WifiSecondChan
impl StructuralPartialEq for WifiSecondChan
Auto Trait Implementations§
impl Freeze for WifiSecondChan
impl RefUnwindSafe for WifiSecondChan
impl Send for WifiSecondChan
impl Sync for WifiSecondChan
impl Unpin for WifiSecondChan
impl UnwindSafe for WifiSecondChan
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