pub struct AWDLActionFrame<I> {
pub subtype: AWDLActionFrameSubType,
pub phy_tx_time: Duration,
pub target_tx_time: Duration,
pub tagged_data: I,
}Expand description
An AWDL AF(Action Frame).
Fields§
§subtype: AWDLActionFrameSubType§phy_tx_time: DurationThe time the NIC physically started sending the frame, in μs.
target_tx_time: DurationThe time the driver send the frame to the NIC, in μs.
tagged_data: IThe TLVs contained in the action frame.
Implementations§
Trait Implementations§
Source§impl<I: Clone> Clone for AWDLActionFrame<I>
impl<I: Clone> Clone for AWDLActionFrame<I>
Source§fn clone(&self) -> AWDLActionFrame<I>
fn clone(&self) -> AWDLActionFrame<I>
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<'a, I, MACIterator, LabelIterator> Debug for AWDLActionFrame<I>
impl<'a, I, MACIterator, LabelIterator> Debug for AWDLActionFrame<I>
Source§impl<I: MeasureWith<()>> MeasureWith<()> for AWDLActionFrame<I>
impl<I: MeasureWith<()>> MeasureWith<()> for AWDLActionFrame<I>
Source§fn measure_with(&self, ctx: &()) -> usize
fn measure_with(&self, ctx: &()) -> usize
How large is
Self, given the ctx?Source§impl<I: PartialEq> PartialEq for AWDLActionFrame<I>
impl<I: PartialEq> PartialEq for AWDLActionFrame<I>
Source§impl<'a> TryFromCtx<'a> for AWDLActionFrame<ReadTLVs<'a>>
impl<'a> TryFromCtx<'a> for AWDLActionFrame<ReadTLVs<'a>>
Source§impl<I: TryIntoCtx<(), Error = Error>> TryIntoCtx for AWDLActionFrame<I>
impl<I: TryIntoCtx<(), Error = Error>> TryIntoCtx for AWDLActionFrame<I>
impl<I: Eq> Eq for AWDLActionFrame<I>
impl<I> StructuralPartialEq for AWDLActionFrame<I>
Auto Trait Implementations§
impl<I> Freeze for AWDLActionFrame<I>where
I: Freeze,
impl<I> RefUnwindSafe for AWDLActionFrame<I>where
I: RefUnwindSafe,
impl<I> Send for AWDLActionFrame<I>where
I: Send,
impl<I> Sync for AWDLActionFrame<I>where
I: Sync,
impl<I> Unpin for AWDLActionFrame<I>where
I: Unpin,
impl<I> UnwindSafe for AWDLActionFrame<I>where
I: UnwindSafe,
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