pub struct Coincidence {
pub a: String,
pub b: String,
pub same: usize,
pub compared: usize,
}Expand description
Two columns that agree on most of the rows they both appear in.
Fields§
§a: StringOne column.
b: StringThe other.
same: usizeRows where both are present and equal.
compared: usizeRows where both are present.
Implementations§
Auto Trait Implementations§
impl Freeze for Coincidence
impl RefUnwindSafe for Coincidence
impl Send for Coincidence
impl Sync for Coincidence
impl Unpin for Coincidence
impl UnsafeUnpin for Coincidence
impl UnwindSafe for Coincidence
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