pub enum WriteBehindError<E: Debug> {
StoreError(E),
}Expand description
Errors that can occur during write-behind cache operations.
Variants§
StoreError(E)
The backing store returned an error.
Trait Implementations§
Auto Trait Implementations§
impl<E> Freeze for WriteBehindError<E>where
E: Freeze,
impl<E> RefUnwindSafe for WriteBehindError<E>where
E: RefUnwindSafe,
impl<E> Send for WriteBehindError<E>where
E: Send,
impl<E> Sync for WriteBehindError<E>where
E: Sync,
impl<E> Unpin for WriteBehindError<E>where
E: Unpin,
impl<E> UnsafeUnpin for WriteBehindError<E>where
E: UnsafeUnpin,
impl<E> UnwindSafe for WriteBehindError<E>where
E: UnwindSafe,
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