pub struct Divergence {
pub at: usize,
pub old: Option<(Vec<u8>, Vec<u8>)>,
pub new: Option<(Vec<u8>, Vec<u8>)>,
}Expand description
What one comparison found.
Fields§
§at: usizePosition of the first place the two orders differ.
old: Option<(Vec<u8>, Vec<u8>)>The old side’s row and the value it was ordered by.
new: Option<(Vec<u8>, Vec<u8>)>The new side’s, at the same position.
Auto Trait Implementations§
impl Freeze for Divergence
impl RefUnwindSafe for Divergence
impl Send for Divergence
impl Sync for Divergence
impl Unpin for Divergence
impl UnsafeUnpin for Divergence
impl UnwindSafe for Divergence
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