pub enum FlashJournalError<E> {
Flash(E),
Misaligned,
OutOfBounds,
ArenaFull,
Uninitialized,
CompactionInProgress,
NoCompaction,
PayloadTooLarge,
ScratchTooShort,
}Variants§
Flash(E)
Misaligned
OutOfBounds
ArenaFull
Uninitialized
CompactionInProgress
NoCompaction
PayloadTooLarge
ScratchTooShort
Trait Implementations§
Source§impl<E> Debug for FlashJournalError<E>where
E: Debug,
impl<E> Debug for FlashJournalError<E>where
E: Debug,
impl<E> Eq for FlashJournalError<E>where
E: Eq,
Source§impl<E> PartialEq for FlashJournalError<E>where
E: PartialEq,
impl<E> PartialEq for FlashJournalError<E>where
E: PartialEq,
impl<E> StructuralPartialEq for FlashJournalError<E>where
E: PartialEq,
Auto Trait Implementations§
impl<E> Freeze for FlashJournalError<E>where
E: Freeze,
impl<E> RefUnwindSafe for FlashJournalError<E>where
E: RefUnwindSafe,
impl<E> Send for FlashJournalError<E>where
E: Send,
impl<E> Sync for FlashJournalError<E>where
E: Sync,
impl<E> Unpin for FlashJournalError<E>where
E: Unpin,
impl<E> UnsafeUnpin for FlashJournalError<E>where
E: UnsafeUnpin,
impl<E> UnwindSafe for FlashJournalError<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