[][src]Enum netlink_wi::attributes::HeGuardInterval

pub enum HeGuardInterval {
    Usec0_8,
    Usec1_6,
    Usec3_2,
    UnrecognizedVariant(u16),
}

Nl80211 HE guard interval.

These attribute types are used with RateInfo.HeGuardInterval

nl80211_he_gi enum from: https://github.com/torvalds/linux/blob/master/include/uapi/linux/nl80211.h

Variants

Usec0_8
Usec1_6
Usec3_2
UnrecognizedVariant(u16)

Variant that signifies an invalid value while deserializing

Trait Implementations

impl Clone for HeGuardInterval[src]

impl Debug for HeGuardInterval[src]

impl Eq for HeGuardInterval[src]

impl<'a> From<&'a HeGuardInterval> for u16[src]

impl From<HeGuardInterval> for u16[src]

impl From<u16> for HeGuardInterval[src]

impl Hash for HeGuardInterval[src]

impl Nl for HeGuardInterval[src]

impl NlAttrType for HeGuardInterval[src]

impl Ord for HeGuardInterval[src]

impl PartialEq<HeGuardInterval> for HeGuardInterval[src]

impl PartialOrd<HeGuardInterval> for HeGuardInterval[src]

impl StructuralEq for HeGuardInterval[src]

impl StructuralPartialEq for HeGuardInterval[src]

Auto Trait Implementations

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

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

The type returned in the event of a conversion error.