pub enum MatchingMode {
Any,
All,
None,
}Expand description
Filtering mode that determines the matching strategy.
Variants§
Trait Implementations§
Source§impl Clone for MatchingMode
impl Clone for MatchingMode
Source§fn clone(&self) -> MatchingMode
fn clone(&self) -> MatchingMode
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 MatchingMode
impl Debug for MatchingMode
Source§impl Default for MatchingMode
impl Default for MatchingMode
Source§fn default() -> MatchingMode
fn default() -> MatchingMode
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for MatchingMode
impl<'de> Deserialize<'de> for MatchingMode
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Source§impl PartialEq for MatchingMode
impl PartialEq for MatchingMode
Source§impl Serialize for MatchingMode
impl Serialize for MatchingMode
impl Copy for MatchingMode
impl StructuralPartialEq for MatchingMode
Auto Trait Implementations§
impl Freeze for MatchingMode
impl RefUnwindSafe for MatchingMode
impl Send for MatchingMode
impl Sync for MatchingMode
impl Unpin for MatchingMode
impl UnsafeUnpin for MatchingMode
impl UnwindSafe for MatchingMode
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