[][src]Enum libpijul::output::ArchiveError

pub enum ArchiveError<P: Error + 'static, T: Error + 'static, A: Error + 'static> {
    A(A),
    P(P),
    Txn(T),
    Unrecord(UnrecordError<P, T>),
    Apply(ApplyError<P, T>),
    StateNotFound {
        state: Merkle,
    },
    File(FileError<P, T>),
    Output(PristineOutputError<P, T>),
}

Variants

A(A)
P(P)
Txn(T)
Unrecord(UnrecordError<P, T>)
Apply(ApplyError<P, T>)
StateNotFound

Fields of StateNotFound

state: Merkle
File(FileError<P, T>)
Output(PristineOutputError<P, T>)

Trait Implementations

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

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

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

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

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

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

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

Auto Trait Implementations

impl<P, T, A> !RefUnwindSafe for ArchiveError<P, T, A>[src]

impl<P, T, A> Send for ArchiveError<P, T, A> where
    A: Send,
    P: Send,
    T: Send
[src]

impl<P, T, A> Sync for ArchiveError<P, T, A> where
    A: Sync,
    P: Sync,
    T: Sync
[src]

impl<P, T, A> Unpin for ArchiveError<P, T, A> where
    A: Unpin,
    P: Unpin,
    T: Unpin
[src]

impl<P, T, A> !UnwindSafe for ArchiveError<P, T, A>[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>,