pub struct MatchPattern {
    pub has_captures: bool,
    pub regex: Regex,
    pub scope: Vec<Scope>,
    pub captures: Option<CaptureMapping>,
    pub operation: MatchOperation,
    pub with_prototype: Option<ContextReference>,
}Fields§
§has_captures: bool§regex: Regex§scope: Vec<Scope>§captures: Option<CaptureMapping>§operation: MatchOperation§with_prototype: Option<ContextReference>Implementations§
Source§impl MatchPattern
 
impl MatchPattern
pub fn new( has_captures: bool, regex_str: String, scope: Vec<Scope>, captures: Option<CaptureMapping>, operation: MatchOperation, with_prototype: Option<ContextReference>, ) -> MatchPattern
Sourcepub fn regex_with_refs(&self, region: &Region, text: &str) -> Regex
 
pub fn regex_with_refs(&self, region: &Region, text: &str) -> Regex
Used by the parser to compile a regex which needs to reference regions from another matched pattern.
pub fn regex(&self) -> &Regex
Trait Implementations§
Source§impl Clone for MatchPattern
 
impl Clone for MatchPattern
Source§fn clone(&self) -> MatchPattern
 
fn clone(&self) -> MatchPattern
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 MatchPattern
 
impl Debug for MatchPattern
Source§impl<'de> Deserialize<'de> for MatchPattern
 
impl<'de> Deserialize<'de> for MatchPattern
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 MatchPattern
 
impl PartialEq for MatchPattern
Source§impl Serialize for MatchPattern
 
impl Serialize for MatchPattern
impl Eq for MatchPattern
impl StructuralPartialEq for MatchPattern
Auto Trait Implementations§
impl !Freeze for MatchPattern
impl RefUnwindSafe for MatchPattern
impl Send for MatchPattern
impl Sync for MatchPattern
impl Unpin for MatchPattern
impl UnwindSafe for MatchPattern
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
Source§impl<T> CloneToUninit for Twhere
    T: Clone,
 
impl<T> CloneToUninit for Twhere
    T: Clone,
Source§impl<Q, K> Equivalent<K> for Q
 
impl<Q, K> Equivalent<K> for Q
Source§impl<Q, K> Equivalent<K> for Q
 
impl<Q, K> Equivalent<K> for Q
Source§fn equivalent(&self, key: &K) -> bool
 
fn equivalent(&self, key: &K) -> bool
Compare self to 
key and return true if they are equal.