Enum stam::FilterMode
source · pub enum FilterMode {
Any,
All,
}Expand description
This determines how a filter is applied when there the filter is provided with multiple reference instances to match against. It determines if the filter requires a match with any of the instances (default), or with all of them.
Variants§
Any
The filter succeeds if any match is found.
All
The filter only succeeds if all reference instances are matched. Note: This might not make sense in some contexts!
Trait Implementations§
source§impl Clone for FilterMode
impl Clone for FilterMode
source§fn clone(&self) -> FilterMode
fn clone(&self) -> FilterMode
Returns a copy 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 FilterMode
impl Debug for FilterMode
source§impl Default for FilterMode
impl Default for FilterMode
source§impl PartialEq for FilterMode
impl PartialEq for FilterMode
source§fn eq(&self, other: &FilterMode) -> bool
fn eq(&self, other: &FilterMode) -> bool
This method tests for
self and other values to be equal, and is used
by ==.impl Copy for FilterMode
impl Eq for FilterMode
impl StructuralEq for FilterMode
impl StructuralPartialEq for FilterMode
Auto Trait Implementations§
impl RefUnwindSafe for FilterMode
impl Send for FilterMode
impl Sync for FilterMode
impl Unpin for FilterMode
impl UnwindSafe for FilterMode
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