pub enum MatchMethod {
Cached,
Compiled,
Individual,
Literal,
}
Expand description
Method used for pattern matching
Variants§
Trait Implementations§
Source§impl Clone for MatchMethod
impl Clone for MatchMethod
Source§fn clone(&self) -> MatchMethod
fn clone(&self) -> MatchMethod
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 MatchMethod
impl Debug for MatchMethod
Source§impl<'de> Deserialize<'de> for MatchMethod
impl<'de> Deserialize<'de> for MatchMethod
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 MatchMethod
impl PartialEq for MatchMethod
Source§impl Serialize for MatchMethod
impl Serialize for MatchMethod
impl Eq for MatchMethod
impl StructuralPartialEq for MatchMethod
Auto Trait Implementations§
impl Freeze for MatchMethod
impl RefUnwindSafe for MatchMethod
impl Send for MatchMethod
impl Sync for MatchMethod
impl Unpin for MatchMethod
impl UnwindSafe for MatchMethod
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