pub enum ExceptionSource {
Checkpointer,
Cleaner,
Evictor,
INCompressor,
Verifier,
ReplicationThread,
Unknown(String),
}Expand description
The source subsystem that raised an exception event.
Mirrors the thread-name conventions used by reporting background
daemon exceptions via ExceptionListener.
Variants§
Trait Implementations§
Source§impl Clone for ExceptionSource
impl Clone for ExceptionSource
Source§fn clone(&self) -> ExceptionSource
fn clone(&self) -> ExceptionSource
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 ExceptionSource
impl Debug for ExceptionSource
Source§impl Display for ExceptionSource
impl Display for ExceptionSource
impl Eq for ExceptionSource
Source§impl PartialEq for ExceptionSource
impl PartialEq for ExceptionSource
Source§fn eq(&self, other: &ExceptionSource) -> bool
fn eq(&self, other: &ExceptionSource) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for ExceptionSource
Auto Trait Implementations§
impl Freeze for ExceptionSource
impl RefUnwindSafe for ExceptionSource
impl Send for ExceptionSource
impl Sync for ExceptionSource
impl Unpin for ExceptionSource
impl UnsafeUnpin for ExceptionSource
impl UnwindSafe for ExceptionSource
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key and return true if they are equal.