Enum build_fs_tree::FailedOperation[][src]

pub enum FailedOperation {
    WriteFile,
    CreateDir,
}

Operation that causes an error

Variants

WriteFile

The operation was to write a file.

CreateDir

The operation was to create a directory.

Implementations

impl FailedOperation[src]

pub const fn name(self) -> &'static str[src]

Convert to a string.

Trait Implementations

impl Clone for FailedOperation[src]

impl Copy for FailedOperation[src]

impl Debug for FailedOperation[src]

impl Display for FailedOperation[src]

impl Eq for FailedOperation[src]

impl PartialEq<FailedOperation> for FailedOperation[src]

impl StructuralEq for FailedOperation[src]

impl StructuralPartialEq for FailedOperation[src]

Auto Trait Implementations

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<X> Pipe for X[src]

impl<X> Pipe for X[src]

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

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.