pub struct SimilarGroup {
pub keep: i64,
pub suspend: Vec<i64>,
pub field_value: String,
pub min_similarity: f64,
}Expand description
A group of similar cards.
Fields§
§keep: i64Card ID of the card to keep.
suspend: Vec<i64>Card IDs of cards to suspend.
field_value: StringThe field value these cards share (from the kept card).
min_similarity: f64Similarity score within the group (minimum pairwise).
Trait Implementations§
Source§impl Clone for SimilarGroup
impl Clone for SimilarGroup
Source§fn clone(&self) -> SimilarGroup
fn clone(&self) -> SimilarGroup
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 SimilarGroup
impl Debug for SimilarGroup
Auto Trait Implementations§
impl Freeze for SimilarGroup
impl RefUnwindSafe for SimilarGroup
impl Send for SimilarGroup
impl Sync for SimilarGroup
impl Unpin for SimilarGroup
impl UnwindSafe for SimilarGroup
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