pub enum StoreEvent {
Degraded {
operation: StoreOperation,
error: String,
},
}Variants§
Degraded
Trait Implementations§
Source§impl Clone for StoreEvent
impl Clone for StoreEvent
Source§fn clone(&self) -> StoreEvent
fn clone(&self) -> StoreEvent
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 moreSource§impl Debug for StoreEvent
impl Debug for StoreEvent
Source§impl PartialEq for StoreEvent
impl PartialEq for StoreEvent
Source§fn eq(&self, other: &StoreEvent) -> bool
fn eq(&self, other: &StoreEvent) -> bool
Tests for
self and other values to be equal, and is used by ==.impl Eq for StoreEvent
impl StructuralPartialEq for StoreEvent
Auto Trait Implementations§
impl Freeze for StoreEvent
impl RefUnwindSafe for StoreEvent
impl Send for StoreEvent
impl Sync for StoreEvent
impl Unpin for StoreEvent
impl UnsafeUnpin for StoreEvent
impl UnwindSafe for StoreEvent
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