#[non_exhaustive]pub enum RunEventSourceErrorKind {
Storage,
CorruptData,
}Expand description
Stable operational source failure category.
Variants (Non-exhaustive)§
This enum is marked as non-exhaustive
Non-exhaustive enums could have additional variants added in future. Therefore, when matching against variants of non-exhaustive enums, an extra wildcard arm must be added to account for any future variants.
Storage
Durable storage could not complete the query.
CorruptData
Persisted data was not a canonical RunEvent.
Trait Implementations§
Source§impl Clone for RunEventSourceErrorKind
impl Clone for RunEventSourceErrorKind
Source§fn clone(&self) -> RunEventSourceErrorKind
fn clone(&self) -> RunEventSourceErrorKind
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 RunEventSourceErrorKind
Source§impl Debug for RunEventSourceErrorKind
impl Debug for RunEventSourceErrorKind
Source§impl<'de> Deserialize<'de> for RunEventSourceErrorKind
impl<'de> Deserialize<'de> for RunEventSourceErrorKind
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
impl Eq for RunEventSourceErrorKind
Source§impl PartialEq for RunEventSourceErrorKind
impl PartialEq for RunEventSourceErrorKind
Source§impl Serialize for RunEventSourceErrorKind
impl Serialize for RunEventSourceErrorKind
impl StructuralPartialEq for RunEventSourceErrorKind
Auto Trait Implementations§
impl Freeze for RunEventSourceErrorKind
impl RefUnwindSafe for RunEventSourceErrorKind
impl Send for RunEventSourceErrorKind
impl Sync for RunEventSourceErrorKind
impl Unpin for RunEventSourceErrorKind
impl UnsafeUnpin for RunEventSourceErrorKind
impl UnwindSafe for RunEventSourceErrorKind
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