pub enum FsErrorC<C: Error + 'static, T: GraphTxnT> {
Txn(TxnErr<T::GraphError>),
Changestore(C),
NotFound(FsNotFound),
}Variants§
Trait Implementations§
Source§impl<C, T: GraphTxnT> Error for FsErrorC<C, T>
impl<C, T: GraphTxnT> Error for FsErrorC<C, 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()
Auto Trait Implementations§
impl<C, T> Freeze for FsErrorC<C, T>
impl<C, T> RefUnwindSafe for FsErrorC<C, T>
impl<C, T> Send for FsErrorC<C, T>where
C: Send,
impl<C, T> Sync for FsErrorC<C, T>where
C: Sync,
impl<C, T> Unpin for FsErrorC<C, T>
impl<C, T> UnsafeUnpin for FsErrorC<C, T>
impl<C, T> UnwindSafe for FsErrorC<C, T>
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