Enum nannou::io::FileError[][src]

pub enum FileError<E> {
    Io(Error),
    Format(E),
}

Errors that might occur when saving a file.

Variants

Trait Implementations

impl<E: Debug> Debug for FileError<E>
[src]

Formats the value using the given formatter. Read more

impl<E> From<Error> for FileError<E>
[src]

Performs the conversion.

impl<E> Error for FileError<E> where
    E: Error
[src]

This method is soft-deprecated. Read more

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

impl<E> Display for FileError<E> where
    E: Error
[src]

Formats the value using the given formatter. Read more

Auto Trait Implementations

impl<E> Send for FileError<E> where
    E: Send

impl<E> Sync for FileError<E> where
    E: Sync