#[repr(C)]pub struct WmmAcParams {
pub ecw_min: u8,
pub ecw_max: u8,
pub aifsn: u8,
pub txop_limit: Uint16,
pub acm: bool,
}Expand description
The wire type corresponding to WmmAcParams.
Fields§
§ecw_min: u8§ecw_max: u8§aifsn: u8§txop_limit: Uint16§acm: boolTrait Implementations§
Source§impl Clone for WmmAcParams
impl Clone for WmmAcParams
Source§fn clone(&self) -> WmmAcParams
fn clone(&self) -> WmmAcParams
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Constrained for WmmAcParams
impl Constrained for WmmAcParams
Source§impl Debug for WmmAcParams
impl Debug for WmmAcParams
Source§impl<___D> Decode<___D> for WmmAcParamswhere
___D: InternalHandleDecoder + ?Sized,
impl<___D> Decode<___D> for WmmAcParamswhere
___D: InternalHandleDecoder + ?Sized,
Source§impl<___E> Encode<WmmAcParams, ___E> for WmmAcParamswhere
___E: InternalHandleEncoder + ?Sized,
impl<___E> Encode<WmmAcParams, ___E> for WmmAcParamswhere
___E: InternalHandleEncoder + ?Sized,
Source§fn encode(
self,
encoder_: &mut ___E,
out_: &mut MaybeUninit<WmmAcParams>,
_: (),
) -> Result<(), EncodeError>
fn encode( self, encoder_: &mut ___E, out_: &mut MaybeUninit<WmmAcParams>, _: (), ) -> Result<(), EncodeError>
Encodes this value into an encoder and output.
§const COPY_OPTIMIZATION: CopyOptimization<Self, W> = _
const COPY_OPTIMIZATION: CopyOptimization<Self, W> = _
Source§impl<'a, ___E> Encode<WmmAcParams, ___E> for &'a WmmAcParamswhere
___E: InternalHandleEncoder + ?Sized,
impl<'a, ___E> Encode<WmmAcParams, ___E> for &'a WmmAcParamswhere
___E: InternalHandleEncoder + ?Sized,
Source§fn encode(
self,
encoder_: &mut ___E,
out_: &mut MaybeUninit<WmmAcParams>,
_: (),
) -> Result<(), EncodeError>
fn encode( self, encoder_: &mut ___E, out_: &mut MaybeUninit<WmmAcParams>, _: (), ) -> Result<(), EncodeError>
Encodes this value into an encoder and output.
§const COPY_OPTIMIZATION: CopyOptimization<Self, W> = _
const COPY_OPTIMIZATION: CopyOptimization<Self, W> = _
Source§impl<___E, T0, T1, T2, T3, T4> Encode<WmmAcParams, ___E> for WmmAcParams<T0, T1, T2, T3, T4>
impl<___E, T0, T1, T2, T3, T4> Encode<WmmAcParams, ___E> for WmmAcParams<T0, T1, T2, T3, T4>
Source§fn encode(
self,
encoder_: &mut ___E,
out_: &mut MaybeUninit<WmmAcParams>,
_: (),
) -> Result<(), EncodeError>
fn encode( self, encoder_: &mut ___E, out_: &mut MaybeUninit<WmmAcParams>, _: (), ) -> Result<(), EncodeError>
Encodes this value into an encoder and output.
§const COPY_OPTIMIZATION: CopyOptimization<Self, W> = _
const COPY_OPTIMIZATION: CopyOptimization<Self, W> = _
Source§impl FromWire<WmmAcParams> for WmmAcParams
impl FromWire<WmmAcParams> for WmmAcParams
Source§fn from_wire(wire: WmmAcParams) -> Self
fn from_wire(wire: WmmAcParams) -> Self
Converts the given owned value to this type.
§const COPY_OPTIMIZATION: CopyOptimization<W, Self> = _
const COPY_OPTIMIZATION: CopyOptimization<W, Self> = _
Source§impl FromWireRef<WmmAcParams> for WmmAcParams
impl FromWireRef<WmmAcParams> for WmmAcParams
Source§fn from_wire_ref(wire: &WmmAcParams) -> Self
fn from_wire_ref(wire: &WmmAcParams) -> Self
Converts the given reference to this type.
Source§impl IntoNatural for WmmAcParams
impl IntoNatural for WmmAcParams
Source§type Natural = WmmAcParams
type Natural = WmmAcParams
A good default type for this wire type to convert into.
§fn into_natural(self) -> Self::Natural
fn into_natural(self) -> Self::Natural
Converts this type into its natural equivalent.
Source§impl Wire for WmmAcParams
impl Wire for WmmAcParams
Source§type Narrowed<'de> = WmmAcParams
type Narrowed<'de> = WmmAcParams
The narrowed wire type, restricted to the
'de lifetime.Source§fn zero_padding(out_: &mut MaybeUninit<Self>)
fn zero_padding(out_: &mut MaybeUninit<Self>)
Writes zeroes to the padding for this type, if any.
Auto Trait Implementations§
impl Freeze for WmmAcParams
impl RefUnwindSafe for WmmAcParams
impl Send for WmmAcParams
impl Sync for WmmAcParams
impl Unpin for WmmAcParams
impl UnsafeUnpin for WmmAcParams
impl UnwindSafe for WmmAcParams
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
§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]