pub struct Dot11EltTIM {
pub dtim_count: u8,
pub dtim_period: u8,
pub bitmap_control: u8,
pub bitmap: Vec<u8>,
}Expand description
Traffic Indication Map (TIM) Information Element (ID=5).
Fields§
§dtim_count: u8DTIM Count.
dtim_period: u8DTIM Period.
bitmap_control: u8Bitmap Control.
bitmap: Vec<u8>Partial Virtual Bitmap.
Implementations§
Trait Implementations§
Source§impl Clone for Dot11EltTIM
impl Clone for Dot11EltTIM
Source§fn clone(&self) -> Dot11EltTIM
fn clone(&self) -> Dot11EltTIM
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 Dot11EltTIM
impl Debug for Dot11EltTIM
Source§impl PartialEq for Dot11EltTIM
impl PartialEq for Dot11EltTIM
impl Eq for Dot11EltTIM
impl StructuralPartialEq for Dot11EltTIM
Auto Trait Implementations§
impl Freeze for Dot11EltTIM
impl RefUnwindSafe for Dot11EltTIM
impl Send for Dot11EltTIM
impl Sync for Dot11EltTIM
impl Unpin for Dot11EltTIM
impl UnsafeUnpin for Dot11EltTIM
impl UnwindSafe for Dot11EltTIM
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