pub struct DuplicateGroup {
pub key_value: String,
pub keep_note_id: i64,
pub duplicate_note_ids: Vec<i64>,
}Expand description
A group of duplicate notes.
Fields§
§key_value: StringThe key value that these notes share.
keep_note_id: i64The note ID that will be kept.
duplicate_note_ids: Vec<i64>The note IDs that are duplicates (to be deleted).
Trait Implementations§
Source§impl Clone for DuplicateGroup
impl Clone for DuplicateGroup
Source§fn clone(&self) -> DuplicateGroup
fn clone(&self) -> DuplicateGroup
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 DuplicateGroup
impl Debug for DuplicateGroup
Auto Trait Implementations§
impl Freeze for DuplicateGroup
impl RefUnwindSafe for DuplicateGroup
impl Send for DuplicateGroup
impl Sync for DuplicateGroup
impl Unpin for DuplicateGroup
impl UnwindSafe for DuplicateGroup
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