pub struct WlanChannel<T0, T1, T2> {
pub primary: T0,
pub cbw: T1,
pub secondary80: T2,
}Expand description
The generic type corresponding to WlanChannel.
Fields§
§primary: T0§cbw: T1§secondary80: T2Trait Implementations§
Source§impl<___E, T0, T1, T2> Encode<WlanChannel, ___E> for WlanChannel<T0, T1, T2>where
___E: InternalHandleEncoder + ?Sized,
T0: Encode<u8, ___E>,
T1: Encode<ChannelBandwidth, ___E>,
T2: Encode<u8, ___E>,
impl<___E, T0, T1, T2> Encode<WlanChannel, ___E> for WlanChannel<T0, T1, T2>where
___E: InternalHandleEncoder + ?Sized,
T0: Encode<u8, ___E>,
T1: Encode<ChannelBandwidth, ___E>,
T2: Encode<u8, ___E>,
Source§fn encode(
self,
encoder_: &mut ___E,
out_: &mut MaybeUninit<WlanChannel>,
_: (),
) -> Result<(), EncodeError>
fn encode( self, encoder_: &mut ___E, out_: &mut MaybeUninit<WlanChannel>, _: (), ) -> Result<(), EncodeError>
Encodes this value into an encoder and output.
§const COPY_OPTIMIZATION: CopyOptimization<Self, W> = _
const COPY_OPTIMIZATION: CopyOptimization<Self, W> = _
Auto Trait Implementations§
impl<T0, T1, T2> Freeze for WlanChannel<T0, T1, T2>
impl<T0, T1, T2> RefUnwindSafe for WlanChannel<T0, T1, T2>
impl<T0, T1, T2> Send for WlanChannel<T0, T1, T2>
impl<T0, T1, T2> Sync for WlanChannel<T0, T1, T2>
impl<T0, T1, T2> Unpin for WlanChannel<T0, T1, T2>
impl<T0, T1, T2> UnsafeUnpin for WlanChannel<T0, T1, T2>
impl<T0, T1, T2> UnwindSafe for WlanChannel<T0, T1, T2>
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
§impl<T> InstanceFromServiceTransport<T> for T
impl<T> InstanceFromServiceTransport<T> for T
§fn from_service_transport(handle: T) -> T
fn from_service_transport(handle: T) -> T
Converts the given service transport handle of type
T to [Self]