pub enum DuplicateScope {
Deck,
DeckRoot,
}Expand description
Scope for duplicate note checking.
Variants§
Deck
Check for duplicates within the target deck only.
DeckRoot
Check for duplicates across the entire collection.
Trait Implementations§
Source§impl Clone for DuplicateScope
impl Clone for DuplicateScope
Source§fn clone(&self) -> DuplicateScope
fn clone(&self) -> DuplicateScope
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 DuplicateScope
impl Debug for DuplicateScope
Source§impl Serialize for DuplicateScope
impl Serialize for DuplicateScope
Source§fn serialize<__S>(
&self,
__serializer: __S,
) -> Result<<__S as Serializer>::Ok, <__S as Serializer>::Error>where
__S: Serializer,
fn serialize<__S>(
&self,
__serializer: __S,
) -> Result<<__S as Serializer>::Ok, <__S as Serializer>::Error>where
__S: Serializer,
Serialize this value into the given Serde serializer. Read more
impl Copy for DuplicateScope
Auto Trait Implementations§
impl Freeze for DuplicateScope
impl RefUnwindSafe for DuplicateScope
impl Send for DuplicateScope
impl Sync for DuplicateScope
impl Unpin for DuplicateScope
impl UnwindSafe for DuplicateScope
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