pub enum TracedEventError {
MissingHeader(String),
InvalidVectorClock(String),
InvalidEventType,
JsonError(Error),
}Variants§
Trait Implementations§
Source§impl Debug for TracedEventError
impl Debug for TracedEventError
Source§impl Display for TracedEventError
impl Display for TracedEventError
Source§impl Error for TracedEventError
impl Error for TracedEventError
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()
Auto Trait Implementations§
impl Freeze for TracedEventError
impl !RefUnwindSafe for TracedEventError
impl Send for TracedEventError
impl Sync for TracedEventError
impl Unpin for TracedEventError
impl UnsafeUnpin for TracedEventError
impl !UnwindSafe for TracedEventError
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