[][src]Struct radiotap::field::ampdu_status::AmpduStatus

pub struct AmpduStatus { /* fields omitted */ }

Indicates that the frame was received as part of an A-MPDU.

Implementations

impl AmpduStatus[src]

pub fn is_zero_len(&self) -> Option<bool>[src]

Whether the frame is 0-length subframe of this A-MPDU.

pub fn is_last(&self) -> Option<bool>[src]

Whether this frame is the last subframe of this A-MPDU.

pub fn delim_crc(&self) -> Option<u8>[src]

Returns the A-MPDU subframe delimiter CRC value.

pub fn has_eof(&self) -> Option<bool>[src]

Whether there is an EOF on this A-MPDU subframe.

pub const fn flags(&self) -> Flags[src]

Returns the raw A-MPDU flags.

pub const fn reference(&self) -> u32[src]

Returns the A-MPDU reference number.

Trait Implementations

impl Clone for AmpduStatus[src]

impl Copy for AmpduStatus[src]

impl Debug for AmpduStatus[src]

impl Eq for AmpduStatus[src]

impl FromBytes for AmpduStatus[src]

type Error = Error

The associated error which can be returned from parsing. Read more

impl PartialEq<AmpduStatus> for AmpduStatus[src]

impl StructuralEq for AmpduStatus[src]

impl StructuralPartialEq for AmpduStatus[src]

Auto Trait Implementations

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.