Enum radiotap::Error[]

pub enum Error {
    ParseError(Error),
    IncompleteError,
    InvalidLength,
    InvalidFormat,
    UnsupportedVersion,
    UnsupportedField,
}

All errors returned and used by the radiotap module.

Variants

The internal cursor on the data returned an IO error.

The given data is not a complete Radiotap capture.

The given data is shorter than the amount specified in the Radiotap header.

The given data is not a valid Radiotap capture.

Unsupported Radiotap header version.

Unsupported Radiotap field.

Trait Implementations

impl Debug for Error
[src]

Formats the value using the given formatter. Read more

impl Display for Error

Formats the value using the given formatter. Read more

impl Error for Error

This method is soft-deprecated. Read more

The lower-level cause of this error, if any. Read more

impl From<Error> for Error

Performs the conversion.

Auto Trait Implementations

impl Send for Error

impl Sync for Error