#[non_exhaustive]#[repr(u32)]pub enum nl80211_rekey_data {
__NL80211_REKEY_DATA_INVALID = 0,
NL80211_REKEY_DATA_KEK = 1,
NL80211_REKEY_DATA_KCK = 2,
NL80211_REKEY_DATA_REPLAY_CTR = 3,
NL80211_REKEY_DATA_AKM = 4,
NUM_NL80211_REKEY_DATA = 5,
}
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_REKEY_DATA_INVALID = 0
NL80211_REKEY_DATA_KEK = 1
NL80211_REKEY_DATA_KCK = 2
NL80211_REKEY_DATA_REPLAY_CTR = 3
NL80211_REKEY_DATA_AKM = 4
NUM_NL80211_REKEY_DATA = 5
Implementations§
Source§impl nl80211_rekey_data
impl nl80211_rekey_data
pub const MAX_NL80211_REKEY_DATA: nl80211_rekey_data = nl80211_rekey_data::NL80211_REKEY_DATA_AKM
Trait Implementations§
Source§impl Clone for nl80211_rekey_data
impl Clone for nl80211_rekey_data
Source§fn clone(&self) -> nl80211_rekey_data
fn clone(&self) -> nl80211_rekey_data
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_rekey_data
impl Debug for nl80211_rekey_data
Source§impl Hash for nl80211_rekey_data
impl Hash for nl80211_rekey_data
Source§impl PartialEq for nl80211_rekey_data
impl PartialEq for nl80211_rekey_data
impl Copy for nl80211_rekey_data
impl Eq for nl80211_rekey_data
impl StructuralPartialEq for nl80211_rekey_data
Auto Trait Implementations§
impl Freeze for nl80211_rekey_data
impl RefUnwindSafe for nl80211_rekey_data
impl Send for nl80211_rekey_data
impl Sync for nl80211_rekey_data
impl Unpin for nl80211_rekey_data
impl UnwindSafe for nl80211_rekey_data
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