pub enum CatalogCombineSelection {
All,
MoreThan(usize),
LessThan(usize),
Unique,
}Expand description
Selection rule used after definitions from all inputs have been counted.
Variants§
All
Keep every message identity.
MoreThan(usize)
Keep identities with more than the provided number of definitions.
LessThan(usize)
Keep identities with less than the provided number of definitions.
Unique
Keep identities defined only once.
Trait Implementations§
Source§impl Clone for CatalogCombineSelection
impl Clone for CatalogCombineSelection
Source§fn clone(&self) -> CatalogCombineSelection
fn clone(&self) -> CatalogCombineSelection
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 moreimpl Copy for CatalogCombineSelection
Source§impl Debug for CatalogCombineSelection
impl Debug for CatalogCombineSelection
Source§impl Default for CatalogCombineSelection
impl Default for CatalogCombineSelection
Source§fn default() -> CatalogCombineSelection
fn default() -> CatalogCombineSelection
Returns the “default value” for a type. Read more
impl Eq for CatalogCombineSelection
Source§impl PartialEq for CatalogCombineSelection
impl PartialEq for CatalogCombineSelection
Source§fn eq(&self, other: &CatalogCombineSelection) -> bool
fn eq(&self, other: &CatalogCombineSelection) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for CatalogCombineSelection
Auto Trait Implementations§
impl Freeze for CatalogCombineSelection
impl RefUnwindSafe for CatalogCombineSelection
impl Send for CatalogCombineSelection
impl Sync for CatalogCombineSelection
impl Unpin for CatalogCombineSelection
impl UnsafeUnpin for CatalogCombineSelection
impl UnwindSafe for CatalogCombineSelection
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