pub struct wifi_he_ap_info {
pub bitmask: u32,
pub bssid_index: u32,
}
Fields§
§bitmask: u32
§bssid_index: u32
Implementations§
Source§impl wifi_he_ap_info
impl wifi_he_ap_info
Sourcepub fn mut_bitmask(&mut self) -> &mut u32
pub fn mut_bitmask(&mut self) -> &mut u32
Return a mutable reference to bitmask
Sourcepub fn set_bitmask(&mut self, value: u32) -> &mut Self
pub fn set_bitmask(&mut self, value: u32) -> &mut Self
Set the value of bitmask
Sourcepub fn init_bitmask(self, value: u32) -> Self
pub fn init_bitmask(self, value: u32) -> Self
Builder method that sets the value of bitmask
. Useful for initializing the message.
Sourcepub fn bssid_index(&self) -> &u32
pub fn bssid_index(&self) -> &u32
Return a reference to bssid_index
Sourcepub fn mut_bssid_index(&mut self) -> &mut u32
pub fn mut_bssid_index(&mut self) -> &mut u32
Return a mutable reference to bssid_index
Sourcepub fn set_bssid_index(&mut self, value: u32) -> &mut Self
pub fn set_bssid_index(&mut self, value: u32) -> &mut Self
Set the value of bssid_index
Sourcepub fn init_bssid_index(self, value: u32) -> Self
pub fn init_bssid_index(self, value: u32) -> Self
Builder method that sets the value of bssid_index
. Useful for initializing the message.
Trait Implementations§
Source§impl Clone for wifi_he_ap_info
impl Clone for wifi_he_ap_info
Source§fn clone(&self) -> wifi_he_ap_info
fn clone(&self) -> wifi_he_ap_info
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 wifi_he_ap_info
impl Debug for wifi_he_ap_info
Source§impl Default for wifi_he_ap_info
impl Default for wifi_he_ap_info
Source§fn default() -> wifi_he_ap_info
fn default() -> wifi_he_ap_info
Returns the “default value” for a type. Read more
Source§impl MessageDecode for wifi_he_ap_info
impl MessageDecode for wifi_he_ap_info
Source§fn decode<IMPL_MICROPB_READ: PbRead>(
&mut self,
decoder: &mut PbDecoder<IMPL_MICROPB_READ>,
len: usize,
) -> Result<(), DecodeError<IMPL_MICROPB_READ::Error>>
fn decode<IMPL_MICROPB_READ: PbRead>( &mut self, decoder: &mut PbDecoder<IMPL_MICROPB_READ>, len: usize, ) -> Result<(), DecodeError<IMPL_MICROPB_READ::Error>>
Decode an instance of the message from the decoder and merge it into
self
. Read moreSource§fn decode_from_bytes(
&mut self,
bytes: &[u8],
) -> Result<(), DecodeError<Infallible>>
fn decode_from_bytes( &mut self, bytes: &[u8], ) -> Result<(), DecodeError<Infallible>>
Decode an instance of the message from the provided bytes
Source§fn decode_len_delimited<R>(
&mut self,
decoder: &mut PbDecoder<R>,
) -> Result<(), DecodeError<<R as PbRead>::Error>>where
R: PbRead,
fn decode_len_delimited<R>(
&mut self,
decoder: &mut PbDecoder<R>,
) -> Result<(), DecodeError<<R as PbRead>::Error>>where
R: PbRead,
Decode an instance of the message from the decoder as a length-delimited record, starting with a length
prefix.
Source§impl MessageEncode for wifi_he_ap_info
impl MessageEncode for wifi_he_ap_info
Source§impl PartialEq for wifi_he_ap_info
impl PartialEq for wifi_he_ap_info
impl StructuralPartialEq for wifi_he_ap_info
Auto Trait Implementations§
impl Freeze for wifi_he_ap_info
impl RefUnwindSafe for wifi_he_ap_info
impl Send for wifi_he_ap_info
impl Sync for wifi_he_ap_info
impl Unpin for wifi_he_ap_info
impl UnwindSafe for wifi_he_ap_info
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