pub enum EventLogError {
Cell(SharedCellError),
Ring(RingError),
EventTooLarge,
StateTooLarge,
}Variants§
Trait Implementations§
Source§impl Clone for EventLogError
impl Clone for EventLogError
Source§fn clone(&self) -> EventLogError
fn clone(&self) -> EventLogError
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 Copy for EventLogError
Source§impl Debug for EventLogError
impl Debug for EventLogError
impl Eq for EventLogError
Source§impl From<RingError> for EventLogError
impl From<RingError> for EventLogError
Source§fn from(e: SharedCellError) -> Self
fn from(e: SharedCellError) -> Self
Converts to this type from the input type.
Source§impl PartialEq for EventLogError
impl PartialEq for EventLogError
impl StructuralPartialEq for EventLogError
Auto Trait Implementations§
impl Freeze for EventLogError
impl RefUnwindSafe for EventLogError
impl Send for EventLogError
impl Sync for EventLogError
impl Unpin for EventLogError
impl UnsafeUnpin for EventLogError
impl UnwindSafe for EventLogError
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