pub struct DedupeQuery {
pub search: String,
pub key_field: String,
pub keep: KeepStrategy,
}Expand description
Query parameters for finding duplicates.
Fields§
§search: StringAnki search query to filter notes.
key_field: StringField name to use as the duplicate key.
keep: KeepStrategyStrategy for which duplicate to keep.
Trait Implementations§
Source§impl Clone for DedupeQuery
impl Clone for DedupeQuery
Source§fn clone(&self) -> DedupeQuery
fn clone(&self) -> DedupeQuery
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 DedupeQuery
impl RefUnwindSafe for DedupeQuery
impl Send for DedupeQuery
impl Sync for DedupeQuery
impl Unpin for DedupeQuery
impl UnwindSafe for DedupeQuery
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