pub struct WlanChannel {
    pub primary: u8,
    pub cbw: ChannelBandwidth,
    pub secondary80: u8,
}Expand description
Channel information derived from the DSSS parameter set, HT operation, and VHT operation IEs, as well as the primary channel on which a frame is received.
IEEE Std 802.11-2016, 9.4.2.4 - DSSS Parameter Set element IEEE Std 802.11-2016, 9.4.2.57 - HT Operation element IEEE Std 802.11-2016, 9.4.2.159 - VHT Operation element
Fields§
§primary: u8§cbw: ChannelBandwidth§secondary80: u8Trait Implementations§
Source§impl Clone for WlanChannel
 
impl Clone for WlanChannel
Source§fn clone(&self) -> WlanChannel
 
fn clone(&self) -> WlanChannel
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 WlanChannel
 
impl Debug for WlanChannel
Source§impl<D: ResourceDialect> Decode<WlanChannel, D> for WlanChannel
 
impl<D: ResourceDialect> Decode<WlanChannel, D> for WlanChannel
Source§impl<D: ResourceDialect> Encode<WlanChannel, D> for &WlanChannel
 
impl<D: ResourceDialect> Encode<WlanChannel, D> for &WlanChannel
Source§impl<D: ResourceDialect, T0: Encode<u8, D>, T1: Encode<ChannelBandwidth, D>, T2: Encode<u8, D>> Encode<WlanChannel, D> for (T0, T1, T2)
 
impl<D: ResourceDialect, T0: Encode<u8, D>, T1: Encode<ChannelBandwidth, D>, T2: Encode<u8, D>> Encode<WlanChannel, D> for (T0, T1, T2)
Source§impl Hash for WlanChannel
 
impl Hash for WlanChannel
Source§impl Ord for WlanChannel
 
impl Ord for WlanChannel
Source§fn cmp(&self, other: &WlanChannel) -> Ordering
 
fn cmp(&self, other: &WlanChannel) -> Ordering
1.21.0 · Source§fn max(self, other: Self) -> Selfwhere
    Self: Sized,
 
fn max(self, other: Self) -> Selfwhere
    Self: Sized,
Compares and returns the maximum of two values. Read more
Source§impl PartialEq for WlanChannel
 
impl PartialEq for WlanChannel
Source§impl PartialOrd for WlanChannel
 
impl PartialOrd for WlanChannel
Source§impl TypeMarker for WlanChannel
 
impl TypeMarker for WlanChannel
Source§type Owned = WlanChannel
 
type Owned = WlanChannel
The owned Rust type which this FIDL type decodes into.
Source§fn inline_align(_context: Context) -> usize
 
fn inline_align(_context: Context) -> usize
Returns the minimum required alignment of the inline portion of the
encoded object. It must be a (nonzero) power of two.
Source§fn inline_size(_context: Context) -> usize
 
fn inline_size(_context: Context) -> usize
Returns the size of the inline portion of the encoded object, including
padding for alignment. Must be a multiple of 
inline_align.Source§fn encode_is_copy() -> bool
 
fn encode_is_copy() -> bool
Returns true if the memory layout of 
Self::Owned matches the FIDL wire
format and encoding requires no validation. When true, we can optimize
encoding arrays and vectors of Self::Owned to a single memcpy. Read moreSource§fn decode_is_copy() -> bool
 
fn decode_is_copy() -> bool
Returns true if the memory layout of 
Self::Owned matches the FIDL wire
format and decoding requires no validation. When true, we can optimize
decoding arrays and vectors of Self::Owned to a single memcpy.Source§impl ValueTypeMarker for WlanChannel
 
impl ValueTypeMarker for WlanChannel
Source§type Borrowed<'a> = &'a WlanChannel
 
type Borrowed<'a> = &'a WlanChannel
The Rust type to use for encoding. This is a particular 
Encode<Self>
type cheaply obtainable from &Self::Owned. There are three cases: Read moreimpl Copy for WlanChannel
impl Eq for WlanChannel
impl Persistable for WlanChannel
impl StructuralPartialEq for WlanChannel
Auto Trait Implementations§
impl Freeze for WlanChannel
impl RefUnwindSafe for WlanChannel
impl Send for WlanChannel
impl Sync for WlanChannel
impl Unpin for WlanChannel
impl UnwindSafe for WlanChannel
Blanket Implementations§
Source§impl<T> Body for Twhere
    T: Persistable,
 
impl<T> Body for Twhere
    T: Persistable,
Source§type MarkerAtTopLevel = T
 
type MarkerAtTopLevel = T
The marker type to use when the body is at the top-level.
Source§type MarkerInResultUnion = T
 
type MarkerInResultUnion = T
The marker type to use when the body is nested in a result union.
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