Enum nx::file::Error [] [src]

pub enum Error {
    Io(IoError),
    InvalidMagic,
    TooShort,
}

An error occuring anywhere in the library.

Variants

An internal IoError.

Magic value in header was incorrect.

File was too short.

Trait Implementations

impl Debug for Error
[src]

[src]

Formats the value using the given formatter. Read more

impl StdError for Error
[src]

[src]

A short description of the error. Read more

[src]

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

impl Display for Error
[src]

[src]

Formats the value using the given formatter. Read more

impl From<IoError> for Error
[src]

[src]

Performs the conversion.

Auto Trait Implementations

impl Send for Error

impl Sync for Error