[][src]Struct radiotap::field::VendorNamespace

pub struct VendorNamespace { /* fields omitted */ }

A special field that describes a vendor namespace within a radiotap capture.

Implementations

impl VendorNamespace[src]

pub fn oui(&self) -> Oui[src]

An organizationally unique identifier for the vendor.

Note: this not unique to the capture, there could be multiple vendor namespaces with this OUI.

pub fn sub_ns(&self) -> u8[src]

The sub-namespace of this vendor namespace.

pub fn skip_length(&self) -> usize[src]

Specifies the number of bytes following this field that belong to this vendor namespace.

Trait Implementations

impl Clone for VendorNamespace[src]

impl Copy for VendorNamespace[src]

impl Debug for VendorNamespace[src]

impl Eq for VendorNamespace[src]

impl FromBytes for VendorNamespace[src]

type Error = Error

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

impl PartialEq<VendorNamespace> for VendorNamespace[src]

impl StructuralEq for VendorNamespace[src]

impl StructuralPartialEq for VendorNamespace[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.