[][src]Trait radiotap::field::Kind

pub trait Kind {
    fn align(&self) -> usize;
fn size(&self) -> usize; }

A kind of radiotap field.

Type implements this to describe the alignment and size for the default radiotap fields. Vendor namespaces need to implement this in order to be able to use the iterator to parse their fields.

Required methods

fn align(&self) -> usize

Returns the alignment of the field.

fn size(&self) -> usize

Returns the size of the field.

Loading content...

Implementors

impl Kind for Type[src]

fn align(&self) -> usize[src]

Returns the alignment of the field.

fn size(&self) -> usize[src]

Returns the size of the field.

Loading content...