[][src]Enum libpijul::output::PristineOutputError

pub enum PristineOutputError<ChangestoreError: Error, Txn: Error + 'static> {
    Txn(Txn),
    Changestore(ChangestoreError),
    Io(Error),
    Fs(FsError<Txn>),
}

Variants

Txn(Txn)
Changestore(ChangestoreError)
Io(Error)
Fs(FsError<Txn>)

Trait Implementations

impl<ChangestoreError: Debug + Error, Txn: Debug + Error + 'static> Debug for PristineOutputError<ChangestoreError, Txn>[src]

impl<ChangestoreError: Error, Txn: Error + 'static> Display for PristineOutputError<ChangestoreError, Txn>[src]

impl<ChangestoreError: Error, Txn: Error + 'static> Error for PristineOutputError<ChangestoreError, Txn>[src]

impl<ChangestoreError: Error, Txn: Error + 'static> From<Error> for PristineOutputError<ChangestoreError, Txn>[src]

impl<C: Error, T: Error + 'static> From<FileError<C, T>> for PristineOutputError<C, T>[src]

impl<ChangestoreError: Error, Txn: Error + 'static> From<FsError<Txn>> for PristineOutputError<ChangestoreError, Txn>[src]

impl<ChangestoreError: Error + 'static, Txn: Error + 'static, W: Error + 'static> From<PristineOutputError<ChangestoreError, Txn>> for OutputError<ChangestoreError, Txn, W>[src]

impl<P: Error + 'static, T: Error + 'static, A: Error + 'static> From<PristineOutputError<P, T>> for ArchiveError<P, T, A>[src]

impl<C: Error, T: Error + 'static> From<TxnErr<T>> for PristineOutputError<C, T>[src]

Auto Trait Implementations

impl<ChangestoreError, Txn> !RefUnwindSafe for PristineOutputError<ChangestoreError, Txn>[src]

impl<ChangestoreError, Txn> Send for PristineOutputError<ChangestoreError, Txn> where
    ChangestoreError: Send,
    Txn: Send
[src]

impl<ChangestoreError, Txn> Sync for PristineOutputError<ChangestoreError, Txn> where
    ChangestoreError: Sync,
    Txn: Sync
[src]

impl<ChangestoreError, Txn> Unpin for PristineOutputError<ChangestoreError, Txn> where
    ChangestoreError: Unpin,
    Txn: Unpin
[src]

impl<ChangestoreError, Txn> !UnwindSafe for PristineOutputError<ChangestoreError, Txn>[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> Same<T> for T

type Output = T

Should always be Self

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.

impl<V, T> VZip<V> for T where
    V: MultiLane<T>,