Enum mime_detective::DetectiveError[][src]

pub enum DetectiveError {
    Magic(MagicError),
    Parse(FromStrError),
    IO(Error),
}

Represents nested error of magic as well as parse and io errors

Variants

Trait Implementations

impl Debug for DetectiveError
[src]

Formats the value using the given formatter. Read more

impl Error for DetectiveError
[src]

This method is soft-deprecated. Read more

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

impl Display for DetectiveError
[src]

Formats the value using the given formatter. Read more

impl From<MagicError> for DetectiveError
[src]

Performs the conversion.

impl From<FromStrError> for DetectiveError
[src]

Performs the conversion.

impl From<Error> for DetectiveError
[src]

Performs the conversion.

Auto Trait Implementations