Enum bufkit_data::BufkitDataErr[][src]

pub enum BufkitDataErr {
    SoundingAnalysis(AnalysisError),
    SoundingBufkit(BufkitFileError),
    IO(Error),
    Database(Error),
    GeneralError,
    InvalidModelName(String),
    NotEnoughData,
}

Error from the archive interface.

Variants

Error forwarded from sounding-analysis

Error forwarded from sounding-bufkit

Error forwarded from std

Database error

A general error forwarded with the failure crate

Invalid model name

Not enough data to complete the task.

Trait Implementations

impl Debug for BufkitDataErr
[src]

Formats the value using the given formatter. Read more

impl From<Error> for BufkitDataErr
[src]

Performs the conversion.

impl From<BufkitFileError> for BufkitDataErr
[src]

Performs the conversion.

impl From<AnalysisError> for BufkitDataErr
[src]

Performs the conversion.

impl From<Error> for BufkitDataErr
[src]

Performs the conversion.

impl From<Error> for BufkitDataErr
[src]

Performs the conversion.

impl From<ParseError> for BufkitDataErr
[src]

Performs the conversion.

Auto Trait Implementations