pub enum PristineOutputError<ChangestoreError: Error, T: GraphTxnT + TreeTxnT> {
Channel(TxnErr<T::GraphError>),
Tree(TreeErr<T::TreeError>),
Changestore(ChangestoreError),
Io(Error),
Fs(FsError<T>),
}Variants§
Channel(TxnErr<T::GraphError>)
Tree(TreeErr<T::TreeError>)
Changestore(ChangestoreError)
Io(Error)
Fs(FsError<T>)
Trait Implementations§
Source§impl<ChangestoreError: Error, T: GraphTxnT + TreeTxnT> Error for PristineOutputError<ChangestoreError, T>
impl<ChangestoreError: Error, T: GraphTxnT + TreeTxnT> Error for PristineOutputError<ChangestoreError, T>
Source§fn source(&self) -> Option<&(dyn Error + 'static)>
fn source(&self) -> Option<&(dyn Error + 'static)>
Returns the lower-level source of this error, if any. Read more
1.0.0 · Source§fn description(&self) -> &str
fn description(&self) -> &str
👎Deprecated since 1.42.0:
use the Display impl or to_string()
Source§impl<ChangestoreError: Error, T: GraphTxnT + TreeTxnT> From<Error> for PristineOutputError<ChangestoreError, T>
impl<ChangestoreError: Error, T: GraphTxnT + TreeTxnT> From<Error> for PristineOutputError<ChangestoreError, T>
Source§impl<ChangestoreError: Error, T: GraphTxnT + TreeTxnT> From<FsError<T>> for PristineOutputError<ChangestoreError, T>
impl<ChangestoreError: Error, T: GraphTxnT + TreeTxnT> From<FsError<T>> for PristineOutputError<ChangestoreError, T>
Source§impl<ChangestoreError: Error + 'static, T: GraphTxnT + TreeTxnT, W: Error + Send + 'static> From<PristineOutputError<ChangestoreError, T>> for OutputError<ChangestoreError, T, W>
impl<ChangestoreError: Error + 'static, T: GraphTxnT + TreeTxnT, W: Error + Send + 'static> From<PristineOutputError<ChangestoreError, T>> for OutputError<ChangestoreError, T, W>
Source§fn from(source: PristineOutputError<ChangestoreError, T>) -> Self
fn from(source: PristineOutputError<ChangestoreError, T>) -> Self
Converts to this type from the input type.
Source§impl<P: Error + 'static, T: GraphTxnT + TreeTxnT, A: Error + 'static> From<PristineOutputError<P, T>> for ArchiveError<P, T, A>
impl<P: Error + 'static, T: GraphTxnT + TreeTxnT, A: Error + 'static> From<PristineOutputError<P, T>> for ArchiveError<P, T, A>
Source§fn from(source: PristineOutputError<P, T>) -> Self
fn from(source: PristineOutputError<P, T>) -> Self
Converts to this type from the input type.
Source§impl<ChangestoreError: Error, T: GraphTxnT + TreeTxnT> From<TreeErr<<T as TreeTxnT>::TreeError>> for PristineOutputError<ChangestoreError, T>
impl<ChangestoreError: Error, T: GraphTxnT + TreeTxnT> From<TreeErr<<T as TreeTxnT>::TreeError>> for PristineOutputError<ChangestoreError, T>
Source§impl<ChangestoreError: Error, T: GraphTxnT + TreeTxnT> From<TxnErr<<T as GraphTxnT>::GraphError>> for PristineOutputError<ChangestoreError, T>
impl<ChangestoreError: Error, T: GraphTxnT + TreeTxnT> From<TxnErr<<T as GraphTxnT>::GraphError>> for PristineOutputError<ChangestoreError, T>
Source§fn from(source: TxnErr<T::GraphError>) -> Self
fn from(source: TxnErr<T::GraphError>) -> Self
Converts to this type from the input type.
Auto Trait Implementations§
impl<ChangestoreError, T> !RefUnwindSafe for PristineOutputError<ChangestoreError, T>
impl<ChangestoreError, T> !UnwindSafe for PristineOutputError<ChangestoreError, T>
impl<ChangestoreError, T> Freeze for PristineOutputError<ChangestoreError, T>
impl<ChangestoreError, T> Send for PristineOutputError<ChangestoreError, T>where
ChangestoreError: Send,
impl<ChangestoreError, T> Sync for PristineOutputError<ChangestoreError, T>where
ChangestoreError: Sync,
impl<ChangestoreError, T> Unpin for PristineOutputError<ChangestoreError, T>
impl<ChangestoreError, T> UnsafeUnpin for PristineOutputError<ChangestoreError, T>where
ChangestoreError: UnsafeUnpin,
<T as GraphTxnT>::GraphError: UnsafeUnpin,
<T as TreeTxnT>::TreeError: UnsafeUnpin,
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more