[][src]Enum fsio::error::FsIOError

pub enum FsIOError {
    PathAlreadyExists(String),
    NotFile(String),
    IOError(StringOption<Error>),
    SystemTimeError(StringOption<SystemTimeError>),
}

Holds the error information

Variants

PathAlreadyExists(String)

Path already exist error type

NotFile(String)

Not a file error type

IOError(StringOption<Error>)

IO error type

SystemTimeError(StringOption<SystemTimeError>)

System time error type

Trait Implementations

impl Debug for FsIOError[src]

impl Display for FsIOError[src]

pub fn fmt(&self, formatter: &mut Formatter<'_>) -> Result<(), Error>[src]

Formats the error using the given formatter.

impl Error for FsIOError[src]

Auto Trait Implementations

impl !RefUnwindSafe for FsIOError[src]

impl Send for FsIOError[src]

impl Sync for FsIOError[src]

impl Unpin for FsIOError[src]

impl !UnwindSafe for FsIOError[src]

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> ToString for T where
    T: Display + ?Sized
[src]

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.