Enum ieee80211::FrameSubtype
source · pub enum FrameSubtype {
Management(ManagementSubtype),
Control(ControlSubtype),
Data(DataSubtype),
Reserved(u8, u8),
}
Variants§
Management(ManagementSubtype)
Control(ControlSubtype)
Data(DataSubtype)
Reserved(u8, u8)
main type, subtype
Implementations§
Trait Implementations§
source§impl Clone for FrameSubtype
impl Clone for FrameSubtype
source§fn clone(&self) -> FrameSubtype
fn clone(&self) -> FrameSubtype
Returns a copy 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 FrameSubtype
impl Debug for FrameSubtype
source§impl Hash for FrameSubtype
impl Hash for FrameSubtype
source§impl PartialEq<FrameSubtype> for FrameSubtype
impl PartialEq<FrameSubtype> for FrameSubtype
source§fn eq(&self, other: &FrameSubtype) -> bool
fn eq(&self, other: &FrameSubtype) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.impl Copy for FrameSubtype
impl Eq for FrameSubtype
impl StructuralEq for FrameSubtype
impl StructuralPartialEq for FrameSubtype
Auto Trait Implementations§
impl RefUnwindSafe for FrameSubtype
impl Send for FrameSubtype
impl Sync for FrameSubtype
impl Unpin for FrameSubtype
impl UnwindSafe for FrameSubtype
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