pub struct RunEventSourceError {
pub kind: RunEventSourceErrorKind,
pub message: String,
}Expand description
Failure while reading canonical events from a durable source.
Fields§
§kind: RunEventSourceErrorKindStable error category suitable for application mapping.
message: StringRedacted diagnostic message.
Implementations§
Trait Implementations§
Source§impl Clone for RunEventSourceError
impl Clone for RunEventSourceError
Source§fn clone(&self) -> RunEventSourceError
fn clone(&self) -> RunEventSourceError
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 RunEventSourceError
impl Debug for RunEventSourceError
Source§impl<'de> Deserialize<'de> for RunEventSourceError
impl<'de> Deserialize<'de> for RunEventSourceError
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
Source§impl Display for RunEventSourceError
impl Display for RunEventSourceError
impl Eq for RunEventSourceError
Source§impl Error for RunEventSourceError
impl Error for RunEventSourceError
1.30.0 · Source§fn source(&self) -> Option<&(dyn Error + 'static)>
fn source(&self) -> Option<&(dyn Error + 'static)>
Returns the lower-level source of this error, if any. Read more
1.0.0 · Source§fn description(&self) -> &str
fn description(&self) -> &str
👎Deprecated since 1.42.0:
use the Display impl or to_string()
Source§impl PartialEq for RunEventSourceError
impl PartialEq for RunEventSourceError
Source§impl Serialize for RunEventSourceError
impl Serialize for RunEventSourceError
impl StructuralPartialEq for RunEventSourceError
Auto Trait Implementations§
impl Freeze for RunEventSourceError
impl RefUnwindSafe for RunEventSourceError
impl Send for RunEventSourceError
impl Sync for RunEventSourceError
impl Unpin for RunEventSourceError
impl UnsafeUnpin for RunEventSourceError
impl UnwindSafe for RunEventSourceError
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