pub struct EventMismatch {
pub tick: u64,
pub seq: u64,
pub source_digest: String,
pub target_digest: String,
pub source_event_type: String,
pub target_event_type: String,
}Expand description
A single event mismatch between two timelines at the same (tick, seq).
Fields§
§tick: u64§seq: u64§source_digest: String§target_digest: String§source_event_type: String§target_event_type: StringTrait Implementations§
Source§impl Clone for EventMismatch
impl Clone for EventMismatch
Source§fn clone(&self) -> EventMismatch
fn clone(&self) -> EventMismatch
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 EventMismatch
impl Debug for EventMismatch
Source§impl<'de> Deserialize<'de> for EventMismatch
impl<'de> Deserialize<'de> for EventMismatch
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 PartialEq for EventMismatch
impl PartialEq for EventMismatch
Source§impl Serialize for EventMismatch
impl Serialize for EventMismatch
impl StructuralPartialEq for EventMismatch
Auto Trait Implementations§
impl Freeze for EventMismatch
impl RefUnwindSafe for EventMismatch
impl Send for EventMismatch
impl Sync for EventMismatch
impl Unpin for EventMismatch
impl UnsafeUnpin for EventMismatch
impl UnwindSafe for EventMismatch
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