pub struct Matcher {
    pub prefix: String,
    pub suffix: String,
    pub inner: InnerMatcher,
}Fields§
§prefix: String§suffix: String§inner: InnerMatcherTrait Implementations§
Source§impl<'de> Deserialize<'de> for Matcher
 
impl<'de> Deserialize<'de> for Matcher
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 From<Matcher<EcmaRegexp>> for Matcher
 
impl From<Matcher<EcmaRegexp>> for Matcher
Source§fn from(matcher: Matcher<EcmaRegexp>) -> Self
 
fn from(matcher: Matcher<EcmaRegexp>) -> Self
Converts to this type from the input type.
impl Eq for Matcher
impl StructuralPartialEq for Matcher
Auto Trait Implementations§
impl Freeze for Matcher
impl RefUnwindSafe for Matcher
impl Send for Matcher
impl Sync for Matcher
impl Unpin for Matcher
impl UnwindSafe for Matcher
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