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