#[non_exhaustive]#[repr(u32)]pub enum nl80211_he_ru_alloc {
NL80211_RATE_INFO_HE_RU_ALLOC_26 = 0,
NL80211_RATE_INFO_HE_RU_ALLOC_52 = 1,
NL80211_RATE_INFO_HE_RU_ALLOC_106 = 2,
NL80211_RATE_INFO_HE_RU_ALLOC_242 = 3,
NL80211_RATE_INFO_HE_RU_ALLOC_484 = 4,
NL80211_RATE_INFO_HE_RU_ALLOC_996 = 5,
NL80211_RATE_INFO_HE_RU_ALLOC_2x996 = 6,
}
Variants (Non-exhaustive)§
This enum is marked as non-exhaustive
Non-exhaustive enums could have additional variants added in future. Therefore, when matching against variants of non-exhaustive enums, an extra wildcard arm must be added to account for any future variants.
NL80211_RATE_INFO_HE_RU_ALLOC_26 = 0
NL80211_RATE_INFO_HE_RU_ALLOC_52 = 1
NL80211_RATE_INFO_HE_RU_ALLOC_106 = 2
NL80211_RATE_INFO_HE_RU_ALLOC_242 = 3
NL80211_RATE_INFO_HE_RU_ALLOC_484 = 4
NL80211_RATE_INFO_HE_RU_ALLOC_996 = 5
NL80211_RATE_INFO_HE_RU_ALLOC_2x996 = 6
Trait Implementations§
Source§impl Clone for nl80211_he_ru_alloc
impl Clone for nl80211_he_ru_alloc
Source§fn clone(&self) -> nl80211_he_ru_alloc
fn clone(&self) -> nl80211_he_ru_alloc
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 nl80211_he_ru_alloc
impl Debug for nl80211_he_ru_alloc
Source§impl Hash for nl80211_he_ru_alloc
impl Hash for nl80211_he_ru_alloc
Source§impl PartialEq for nl80211_he_ru_alloc
impl PartialEq for nl80211_he_ru_alloc
impl Copy for nl80211_he_ru_alloc
impl Eq for nl80211_he_ru_alloc
impl StructuralPartialEq for nl80211_he_ru_alloc
Auto Trait Implementations§
impl Freeze for nl80211_he_ru_alloc
impl RefUnwindSafe for nl80211_he_ru_alloc
impl Send for nl80211_he_ru_alloc
impl Sync for nl80211_he_ru_alloc
impl Unpin for nl80211_he_ru_alloc
impl UnwindSafe for nl80211_he_ru_alloc
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