pub enum MatchRecognizeSymbol {
Named(Ident),
Start,
End,
}Expand description
A symbol in a MATCH_RECOGNIZE pattern.
Variants§
Named(Ident)
A named symbol, e.g. S1.
Start
A virtual symbol representing the start of the of partition (^).
End
A virtual symbol representing the end of the partition ($).
Trait Implementations§
Source§impl Clone for MatchRecognizeSymbol
impl Clone for MatchRecognizeSymbol
Source§fn clone(&self) -> MatchRecognizeSymbol
fn clone(&self) -> MatchRecognizeSymbol
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 more
Source§impl Debug for MatchRecognizeSymbol
impl Debug for MatchRecognizeSymbol
Source§impl<'de> Deserialize<'de> for MatchRecognizeSymbol
impl<'de> Deserialize<'de> for MatchRecognizeSymbol
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>,
where __D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Source§impl Display for MatchRecognizeSymbol
impl Display for MatchRecognizeSymbol
Source§impl Hash for MatchRecognizeSymbol
impl Hash for MatchRecognizeSymbol
Source§impl Ord for MatchRecognizeSymbol
impl Ord for MatchRecognizeSymbol
Source§fn cmp(&self, other: &MatchRecognizeSymbol) -> Ordering
fn cmp(&self, other: &MatchRecognizeSymbol) -> Ordering
1.21.0 · Source§fn max(self, other: Self) -> Selfwhere
Self: Sized,
fn max(self, other: Self) -> Selfwhere
Self: Sized,
where Self: Sized,
Compares and returns the maximum of two values. Read more
Source§impl PartialEq for MatchRecognizeSymbol
impl PartialEq for MatchRecognizeSymbol
Source§impl PartialOrd for MatchRecognizeSymbol
impl PartialOrd for MatchRecognizeSymbol
Source§fn partial_cmp(&self, other: &MatchRecognizeSymbol) -> Option<Ordering>
fn partial_cmp(&self, other: &MatchRecognizeSymbol) -> Option<Ordering>
This method returns an ordering between self and other values if one exists. Read more
1.0.0 · Source§fn lt(&self, other: &Rhs) -> bool
fn lt(&self, other: &Rhs) -> bool
Tests less than (for self and other) and is used by the < operator. Read more
1.0.0 · Source§fn le(&self, other: &Rhs) -> bool
fn le(&self, other: &Rhs) -> bool
Tests less than or equal to (for self and other) and is used by the
<= operator. Read more
Source§impl Serialize for MatchRecognizeSymbol
impl Serialize for MatchRecognizeSymbol
Source§impl Visit for MatchRecognizeSymbol
impl Visit for MatchRecognizeSymbol
Source§impl VisitMut for MatchRecognizeSymbol
impl VisitMut for MatchRecognizeSymbol
Source§fn visit<V: VisitorMut>(&mut self, visitor: &mut V) -> ControlFlow<V::Break>
fn visit<V: VisitorMut>(&mut self, visitor: &mut V) -> ControlFlow<V::Break>
Mutably visit this node with the provided VisitorMut. Read more
impl Eq for MatchRecognizeSymbol
impl StructuralPartialEq for MatchRecognizeSymbol
Auto Trait Implementations§
impl Freeze for MatchRecognizeSymbol
impl RefUnwindSafe for MatchRecognizeSymbol
impl Send for MatchRecognizeSymbol
impl Sync for MatchRecognizeSymbol
impl Unpin for MatchRecognizeSymbol
impl UnwindSafe for MatchRecognizeSymbol
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
where 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,
where T: Clone,
impl<T> DeserializeOwned for Twhere
T: for<'de> Deserialize<'de>,
where T: for<'de> Deserialize<'de>,