Type Alias ActionNoAckFrame

Source
pub type ActionNoAckFrame<B> = NoAck<true, ActionBody<B>>;
Expand description

Action frame that does not require acknowledgement per the ACTION_NO_ACK management frame subtype.

Aliased Type§

struct ActionNoAckFrame<B>(pub ActionBody<B>);

Fields§

§0: ActionBody<B>

Implementations

Source§

impl<const NO_ACK: bool, B> NoAck<NO_ACK, ActionBody<B>>
where B: SplitByteSlice,

Source

pub fn parse(bytes: B) -> Option<Self>

Source§

impl<const NO_ACK: bool, T> NoAck<NO_ACK, T>

Source

pub fn into_body(self) -> T

Trait Implementations

Source§

impl<const NO_ACK: bool, T> AsRef<T> for NoAck<NO_ACK, T>

Source§

fn as_ref(&self) -> &T

Converts this type into a shared reference of the (usually inferred) input type.
Source§

impl<const NO_ACK: bool, T: Clone> Clone for NoAck<NO_ACK, T>

Source§

fn clone(&self) -> NoAck<NO_ACK, T>

Returns a copy of the value. Read more
1.0.0 · Source§

fn clone_from(&mut self, source: &Self)

Performs copy-assignment from source. Read more
Source§

impl<const NO_ACK: bool, T: Debug> Debug for NoAck<NO_ACK, T>

Source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
Source§

impl<const NO_ACK: bool, T: Copy> Copy for NoAck<NO_ACK, T>