[][src]Enum pest_meta::parser::ParserExpr

pub enum ParserExpr<'i> {
    Str(String),
    Insens(String),
    Range(StringString),
    Ident(String),
    PeekSlice(i32Option<i32>),
    PosPred(Box<ParserNode<'i>>),
    NegPred(Box<ParserNode<'i>>),
    Seq(Box<ParserNode<'i>>, Box<ParserNode<'i>>),
    Choice(Box<ParserNode<'i>>, Box<ParserNode<'i>>),
    Opt(Box<ParserNode<'i>>),
    Rep(Box<ParserNode<'i>>),
    RepOnce(Box<ParserNode<'i>>),
    RepExact(Box<ParserNode<'i>>, u32),
    RepMin(Box<ParserNode<'i>>, u32),
    RepMax(Box<ParserNode<'i>>, u32),
    RepMinMax(Box<ParserNode<'i>>, u32u32),
    Push(Box<ParserNode<'i>>),
}

Variants

Str(String)Insens(String)Range(StringString)Ident(String)PeekSlice(i32Option<i32>)PosPred(Box<ParserNode<'i>>)NegPred(Box<ParserNode<'i>>)Seq(Box<ParserNode<'i>>, Box<ParserNode<'i>>)Choice(Box<ParserNode<'i>>, Box<ParserNode<'i>>)Opt(Box<ParserNode<'i>>)Rep(Box<ParserNode<'i>>)RepOnce(Box<ParserNode<'i>>)RepExact(Box<ParserNode<'i>>, u32)RepMin(Box<ParserNode<'i>>, u32)RepMax(Box<ParserNode<'i>>, u32)RepMinMax(Box<ParserNode<'i>>, u32u32)Push(Box<ParserNode<'i>>)

Trait Implementations

impl<'i> Clone for ParserExpr<'i>[src]

default fn clone_from(&mut self, source: &Self)
1.0.0
[src]

Performs copy-assignment from source. Read more

impl<'i> Eq for ParserExpr<'i>[src]

impl<'i> PartialEq<ParserExpr<'i>> for ParserExpr<'i>[src]

impl<'i> Debug for ParserExpr<'i>[src]

Auto Trait Implementations

impl<'i> Send for ParserExpr<'i>

impl<'i> Sync for ParserExpr<'i>

Blanket Implementations

impl<T, U> Into for T where
    U: From<T>, 
[src]

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

impl<T> From for T[src]

impl<T, U> TryFrom for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T> Borrow for T where
    T: ?Sized
[src]

impl<T> BorrowMut for T where
    T: ?Sized
[src]

impl<T, U> TryInto for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.

impl<T> Any for T where
    T: 'static + ?Sized
[src]