pub struct DedupSuggestion {
pub record_id_a: String,
pub record_id_b: String,
pub title_a: String,
pub title_b: String,
pub similarity: u32,
}Fields§
§record_id_a: String§record_id_b: String§title_a: String§title_b: String§similarity: u32Trait Implementations§
Source§impl Clone for DedupSuggestion
impl Clone for DedupSuggestion
Source§fn clone(&self) -> DedupSuggestion
fn clone(&self) -> DedupSuggestion
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · 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 DedupSuggestion
impl Debug for DedupSuggestion
Source§impl PartialEq for DedupSuggestion
impl PartialEq for DedupSuggestion
Source§fn eq(&self, other: &DedupSuggestion) -> bool
fn eq(&self, other: &DedupSuggestion) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl Serialize for DedupSuggestion
impl Serialize for DedupSuggestion
impl Eq for DedupSuggestion
impl StructuralPartialEq for DedupSuggestion
Auto Trait Implementations§
impl Freeze for DedupSuggestion
impl RefUnwindSafe for DedupSuggestion
impl Send for DedupSuggestion
impl Sync for DedupSuggestion
impl Unpin for DedupSuggestion
impl UnsafeUnpin for DedupSuggestion
impl UnwindSafe for DedupSuggestion
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key and return true if they are equal.