pub enum DivergenceKind {
ContentMismatch,
LengthMismatch {
len_a: usize,
len_b: usize,
},
}Expand description
The kind of divergence found between two logs.
Variants§
ContentMismatch
The entries at the same sequence number have different content.
LengthMismatch
The logs have different lengths.
Trait Implementations§
Source§impl Clone for DivergenceKind
impl Clone for DivergenceKind
Source§fn clone(&self) -> DivergenceKind
fn clone(&self) -> DivergenceKind
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 moreAuto Trait Implementations§
impl Freeze for DivergenceKind
impl RefUnwindSafe for DivergenceKind
impl Send for DivergenceKind
impl Sync for DivergenceKind
impl Unpin for DivergenceKind
impl UnsafeUnpin for DivergenceKind
impl UnwindSafe for DivergenceKind
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