pub enum PaneSemanticInputTraceError {
UnsupportedSchemaVersion {
version: u16,
expected: u16,
},
EmptyEvents,
SequenceOutOfOrder {
index: usize,
previous: u64,
current: u64,
},
InvalidEvent {
index: usize,
source: PaneSemanticInputEventError,
},
ChecksumMismatch {
recorded: u64,
computed: u64,
},
}Expand description
Validation failures for semantic replay trace payloads.
Variants§
Trait Implementations§
Source§impl Clone for PaneSemanticInputTraceError
impl Clone for PaneSemanticInputTraceError
Source§fn clone(&self) -> PaneSemanticInputTraceError
fn clone(&self) -> PaneSemanticInputTraceError
Returns a duplicate of the value. Read more
1.0.0 · 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 PaneSemanticInputTraceError
impl Debug for PaneSemanticInputTraceError
Source§impl Error for PaneSemanticInputTraceError
impl Error for PaneSemanticInputTraceError
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()
impl Eq for PaneSemanticInputTraceError
impl StructuralPartialEq for PaneSemanticInputTraceError
Auto Trait Implementations§
impl Freeze for PaneSemanticInputTraceError
impl RefUnwindSafe for PaneSemanticInputTraceError
impl Send for PaneSemanticInputTraceError
impl Sync for PaneSemanticInputTraceError
impl Unpin for PaneSemanticInputTraceError
impl UnsafeUnpin for PaneSemanticInputTraceError
impl UnwindSafe for PaneSemanticInputTraceError
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