pub enum CustomStringMatch {
Exact,
Contains,
Regex,
}Variants§
Trait Implementations§
Source§impl Clone for CustomStringMatch
impl Clone for CustomStringMatch
Source§fn clone(&self) -> CustomStringMatch
fn clone(&self) -> CustomStringMatch
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 moreSource§impl Debug for CustomStringMatch
impl Debug for CustomStringMatch
Source§impl Default for CustomStringMatch
impl Default for CustomStringMatch
Source§impl<'de> Deserialize<'de> for CustomStringMatch
impl<'de> Deserialize<'de> for CustomStringMatch
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 CustomStringMatch
impl PartialEq for CustomStringMatch
Source§fn eq(&self, other: &CustomStringMatch) -> bool
fn eq(&self, other: &CustomStringMatch) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl Serialize for CustomStringMatch
impl Serialize for CustomStringMatch
impl Eq for CustomStringMatch
impl StructuralPartialEq for CustomStringMatch
Auto Trait Implementations§
impl Freeze for CustomStringMatch
impl RefUnwindSafe for CustomStringMatch
impl Send for CustomStringMatch
impl Sync for CustomStringMatch
impl Unpin for CustomStringMatch
impl UnsafeUnpin for CustomStringMatch
impl UnwindSafe for CustomStringMatch
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