Enum nl80211_bss

Source
#[non_exhaustive]
#[repr(u32)]
pub enum nl80211_bss {
Show 26 variants __NL80211_BSS_INVALID = 0, NL80211_BSS_BSSID = 1, NL80211_BSS_FREQUENCY = 2, NL80211_BSS_TSF = 3, NL80211_BSS_BEACON_INTERVAL = 4, NL80211_BSS_CAPABILITY = 5, NL80211_BSS_INFORMATION_ELEMENTS = 6, NL80211_BSS_SIGNAL_MBM = 7, NL80211_BSS_SIGNAL_UNSPEC = 8, NL80211_BSS_STATUS = 9, NL80211_BSS_SEEN_MS_AGO = 10, NL80211_BSS_BEACON_IES = 11, NL80211_BSS_CHAN_WIDTH = 12, NL80211_BSS_BEACON_TSF = 13, NL80211_BSS_PRESP_DATA = 14, NL80211_BSS_LAST_SEEN_BOOTTIME = 15, NL80211_BSS_PAD = 16, NL80211_BSS_PARENT_TSF = 17, NL80211_BSS_PARENT_BSSID = 18, NL80211_BSS_CHAIN_SIGNAL = 19, NL80211_BSS_FREQUENCY_OFFSET = 20, NL80211_BSS_MLO_LINK_ID = 21, NL80211_BSS_MLD_ADDR = 22, NL80211_BSS_USE_FOR = 23, NL80211_BSS_CANNOT_USE_REASONS = 24, __NL80211_BSS_AFTER_LAST = 25,
}

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_BSS_INVALID = 0

§

NL80211_BSS_BSSID = 1

§

NL80211_BSS_FREQUENCY = 2

§

NL80211_BSS_TSF = 3

§

NL80211_BSS_BEACON_INTERVAL = 4

§

NL80211_BSS_CAPABILITY = 5

§

NL80211_BSS_INFORMATION_ELEMENTS = 6

§

NL80211_BSS_SIGNAL_MBM = 7

§

NL80211_BSS_SIGNAL_UNSPEC = 8

§

NL80211_BSS_STATUS = 9

§

NL80211_BSS_SEEN_MS_AGO = 10

§

NL80211_BSS_BEACON_IES = 11

§

NL80211_BSS_CHAN_WIDTH = 12

§

NL80211_BSS_BEACON_TSF = 13

§

NL80211_BSS_PRESP_DATA = 14

§

NL80211_BSS_LAST_SEEN_BOOTTIME = 15

§

NL80211_BSS_PAD = 16

§

NL80211_BSS_PARENT_TSF = 17

§

NL80211_BSS_PARENT_BSSID = 18

§

NL80211_BSS_CHAIN_SIGNAL = 19

§

NL80211_BSS_FREQUENCY_OFFSET = 20

§

NL80211_BSS_MLD_ADDR = 22

§

NL80211_BSS_USE_FOR = 23

§

NL80211_BSS_CANNOT_USE_REASONS = 24

§

__NL80211_BSS_AFTER_LAST = 25

Implementations§

Source§

impl nl80211_bss

Source

pub const NL80211_BSS_MAX: nl80211_bss = nl80211_bss::NL80211_BSS_CANNOT_USE_REASONS

Trait Implementations§

Source§

impl Clone for nl80211_bss

Source§

fn clone(&self) -> nl80211_bss

Returns a duplicate of the value. Read more
1.0.0 · Source§

fn clone_from(&mut self, source: &Self)

Performs copy-assignment from source. Read more
Source§

impl Debug for nl80211_bss

Source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
Source§

impl Hash for nl80211_bss

Source§

fn hash<__H: Hasher>(&self, state: &mut __H)

Feeds this value into the given Hasher. Read more
1.3.0 · Source§

fn hash_slice<H>(data: &[Self], state: &mut H)
where H: Hasher, Self: Sized,

Feeds a slice of this type into the given Hasher. Read more
Source§

impl PartialEq for nl80211_bss

Source§

fn eq(&self, other: &nl80211_bss) -> bool

Tests for self and other values to be equal, and is used by ==.
1.0.0 · Source§

fn ne(&self, other: &Rhs) -> bool

Tests for !=. The default implementation is almost always sufficient, and should not be overridden without very good reason.
Source§

impl Copy for nl80211_bss

Source§

impl Eq for nl80211_bss

Source§

impl StructuralPartialEq for nl80211_bss

Auto Trait Implementations§

Blanket Implementations§

Source§

impl<T> Any for T
where T: 'static + ?Sized,

Source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
Source§

impl<T> Borrow<T> for T
where T: ?Sized,

Source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
Source§

impl<T> BorrowMut<T> for T
where T: ?Sized,

Source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
Source§

impl<T> CloneToUninit for T
where T: Clone,

Source§

unsafe fn clone_to_uninit(&self, dest: *mut u8)

🔬This is a nightly-only experimental API. (clone_to_uninit)
Performs copy-assignment from self to dest. Read more
Source§

impl<T> From<T> for T

Source§

fn from(t: T) -> T

Returns the argument unchanged.

Source§

impl<T, U> Into<U> for T
where U: From<T>,

Source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

Source§

impl<T, U> TryFrom<U> for T
where U: Into<T>,

Source§

type Error = Infallible

The type returned in the event of a conversion error.
Source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
Source§

impl<T, U> TryInto<U> for T
where U: TryFrom<T>,

Source§

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

The type returned in the event of a conversion error.
Source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.