pub enum StoreError<E> {
Raw(StoreRawError),
FormatError(E),
}Variants§
Raw(StoreRawError)
FormatError(E)
Trait Implementations§
Source§impl<E> Clone for StoreError<E>where
E: Clone,
impl<E> Clone for StoreError<E>where
E: Clone,
Source§fn clone(&self) -> StoreError<E>
fn clone(&self) -> StoreError<E>
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl<E> Debug for StoreError<E>where
E: Debug,
impl<E> Debug for StoreError<E>where
E: Debug,
Source§impl<E> PartialEq for StoreError<E>where
E: PartialEq,
impl<E> PartialEq for StoreError<E>where
E: PartialEq,
impl<E> Copy for StoreError<E>where
E: Copy,
impl<E> Eq for StoreError<E>where
E: Eq,
impl<E> StructuralPartialEq for StoreError<E>
Auto Trait Implementations§
impl<E> Freeze for StoreError<E>where
E: Freeze,
impl<E> RefUnwindSafe for StoreError<E>where
E: RefUnwindSafe,
impl<E> Send for StoreError<E>where
E: Send,
impl<E> Sync for StoreError<E>where
E: Sync,
impl<E> Unpin for StoreError<E>where
E: Unpin,
impl<E> UnwindSafe for StoreError<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