Struct build_fs_tree::BuildError[][src]

pub struct BuildError<Path, Error> {
    pub operation: FailedOperation,
    pub path: Path,
    pub error: Error,
}

Error caused by Build::build.

Fields

operation: FailedOperation

Operation that caused the error.

path: Path

Path where the error occurred.

error: Error

The error.

Trait Implementations

impl<Path: Clone, Error: Clone> Clone for BuildError<Path, Error>[src]

impl<Path: Copy, Error: Copy> Copy for BuildError<Path, Error>[src]

impl<Path: Debug, Error: Debug> Debug for BuildError<Path, Error>[src]

impl<Path, Error> Display for BuildError<Path, Error> where
    Path: Debug,
    Error: Display
[src]

impl<Path: Eq, Error: Eq> Eq for BuildError<Path, Error>[src]

impl<Path: PartialEq, Error: PartialEq> PartialEq<BuildError<Path, Error>> for BuildError<Path, Error>[src]

impl<Path, Error> StructuralEq for BuildError<Path, Error>[src]

impl<Path, Error> StructuralPartialEq for BuildError<Path, Error>[src]

Auto Trait Implementations

impl<Path, Error> RefUnwindSafe for BuildError<Path, Error> where
    Error: RefUnwindSafe,
    Path: RefUnwindSafe

impl<Path, Error> Send for BuildError<Path, Error> where
    Error: Send,
    Path: Send

impl<Path, Error> Sync for BuildError<Path, Error> where
    Error: Sync,
    Path: Sync

impl<Path, Error> Unpin for BuildError<Path, Error> where
    Error: Unpin,
    Path: Unpin

impl<Path, Error> UnwindSafe for BuildError<Path, Error> where
    Error: UnwindSafe,
    Path: UnwindSafe

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.