#[non_exhaustive]#[repr(u32)]pub enum nl80211_tid_config_attr {
Show 15 variants
__NL80211_TID_CONFIG_ATTR_INVALID = 0,
NL80211_TID_CONFIG_ATTR_PAD = 1,
NL80211_TID_CONFIG_ATTR_VIF_SUPP = 2,
NL80211_TID_CONFIG_ATTR_PEER_SUPP = 3,
NL80211_TID_CONFIG_ATTR_OVERRIDE = 4,
NL80211_TID_CONFIG_ATTR_TIDS = 5,
NL80211_TID_CONFIG_ATTR_NOACK = 6,
NL80211_TID_CONFIG_ATTR_RETRY_SHORT = 7,
NL80211_TID_CONFIG_ATTR_RETRY_LONG = 8,
NL80211_TID_CONFIG_ATTR_AMPDU_CTRL = 9,
NL80211_TID_CONFIG_ATTR_RTSCTS_CTRL = 10,
NL80211_TID_CONFIG_ATTR_AMSDU_CTRL = 11,
NL80211_TID_CONFIG_ATTR_TX_RATE_TYPE = 12,
NL80211_TID_CONFIG_ATTR_TX_RATE = 13,
__NL80211_TID_CONFIG_ATTR_AFTER_LAST = 14,
}
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_TID_CONFIG_ATTR_INVALID = 0
NL80211_TID_CONFIG_ATTR_PAD = 1
NL80211_TID_CONFIG_ATTR_VIF_SUPP = 2
NL80211_TID_CONFIG_ATTR_PEER_SUPP = 3
NL80211_TID_CONFIG_ATTR_OVERRIDE = 4
NL80211_TID_CONFIG_ATTR_TIDS = 5
NL80211_TID_CONFIG_ATTR_NOACK = 6
NL80211_TID_CONFIG_ATTR_RETRY_SHORT = 7
NL80211_TID_CONFIG_ATTR_RETRY_LONG = 8
NL80211_TID_CONFIG_ATTR_AMPDU_CTRL = 9
NL80211_TID_CONFIG_ATTR_RTSCTS_CTRL = 10
NL80211_TID_CONFIG_ATTR_AMSDU_CTRL = 11
NL80211_TID_CONFIG_ATTR_TX_RATE_TYPE = 12
NL80211_TID_CONFIG_ATTR_TX_RATE = 13
__NL80211_TID_CONFIG_ATTR_AFTER_LAST = 14
Implementations§
Source§impl nl80211_tid_config_attr
impl nl80211_tid_config_attr
pub const NL80211_TID_CONFIG_ATTR_MAX: nl80211_tid_config_attr = nl80211_tid_config_attr::NL80211_TID_CONFIG_ATTR_TX_RATE
Trait Implementations§
Source§impl Clone for nl80211_tid_config_attr
impl Clone for nl80211_tid_config_attr
Source§fn clone(&self) -> nl80211_tid_config_attr
fn clone(&self) -> nl80211_tid_config_attr
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_tid_config_attr
impl Debug for nl80211_tid_config_attr
Source§impl Hash for nl80211_tid_config_attr
impl Hash for nl80211_tid_config_attr
Source§impl PartialEq for nl80211_tid_config_attr
impl PartialEq for nl80211_tid_config_attr
impl Copy for nl80211_tid_config_attr
impl Eq for nl80211_tid_config_attr
impl StructuralPartialEq for nl80211_tid_config_attr
Auto Trait Implementations§
impl Freeze for nl80211_tid_config_attr
impl RefUnwindSafe for nl80211_tid_config_attr
impl Send for nl80211_tid_config_attr
impl Sync for nl80211_tid_config_attr
impl Unpin for nl80211_tid_config_attr
impl UnwindSafe for nl80211_tid_config_attr
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