Enum pest_meta::parser::Rule [−][src]
pub enum Rule { EOI, grammar_rules, grammar_rule, assignment_operator, opening_brace, closing_brace, opening_paren, closing_paren, modifier, silent_modifier, atomic_modifier, compound_atomic_modifier, non_atomic_modifier, expression, term, node, terminal, prefix_operator, infix_operator, postfix_operator, positive_predicate_operator, negative_predicate_operator, sequence_operator, choice_operator, optional_operator, repeat_operator, repeat_once_operator, repeat_exact, repeat_min, repeat_max, repeat_min_max, number, comma, _push, identifier, alpha, alpha_num, string, insensitive_string, range, character, inner_str, inner_chr, escape, code, unicode, hex_digit, quote, single_quote, range_operator, newline, WHITESPACE, COMMENT, }
Variants
EOI
grammar_rules
grammar_rule
assignment_operator
opening_brace
closing_brace
opening_paren
closing_paren
modifier
silent_modifier
atomic_modifier
compound_atomic_modifier
non_atomic_modifier
expression
term
node
terminal
prefix_operator
infix_operator
postfix_operator
positive_predicate_operator
negative_predicate_operator
sequence_operator
choice_operator
optional_operator
repeat_operator
repeat_once_operator
repeat_exact
repeat_min
repeat_max
repeat_min_max
number
comma
_push
identifier
alpha
alpha_num
string
insensitive_string
range
character
inner_str
inner_chr
escape
code
unicode
hex_digit
quote
single_quote
range_operator
newline
WHITESPACE
COMMENT
Trait Implementations
impl Clone for Rule
[src]
impl Clone for Rule
fn clone(&self) -> Rule
[src]
fn clone(&self) -> Rule
Returns a copy of the value. Read more
fn clone_from(&mut self, source: &Self)
1.0.0[src]
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from source
. Read more
impl Copy for Rule
[src]
impl Copy for Rule
impl Debug for Rule
[src]
impl Debug for Rule
fn fmt(&self, f: &mut Formatter) -> Result
[src]
fn fmt(&self, f: &mut Formatter) -> Result
Formats the value using the given formatter. Read more
impl Eq for Rule
[src]
impl Eq for Rule
impl Hash for Rule
[src]
impl Hash for Rule
fn hash<__H: Hasher>(&self, state: &mut __H)
[src]
fn hash<__H: Hasher>(&self, state: &mut __H)
Feeds this value into the given [Hasher
]. Read more
fn hash_slice<H>(data: &[Self], state: &mut H) where
H: Hasher,
1.3.0[src]
fn hash_slice<H>(data: &[Self], state: &mut H) where
H: Hasher,
Feeds a slice of this type into the given [Hasher
]. Read more
impl Ord for Rule
[src]
impl Ord for Rule
fn cmp(&self, other: &Rule) -> Ordering
[src]
fn cmp(&self, other: &Rule) -> Ordering
This method returns an Ordering
between self
and other
. Read more
fn max(self, other: Self) -> Self
1.21.0[src]
fn max(self, other: Self) -> Self
Compares and returns the maximum of two values. Read more
fn min(self, other: Self) -> Self
1.21.0[src]
fn min(self, other: Self) -> Self
Compares and returns the minimum of two values. Read more
impl PartialEq for Rule
[src]
impl PartialEq for Rule
fn eq(&self, other: &Rule) -> bool
[src]
fn eq(&self, other: &Rule) -> bool
This method tests for self
and other
values to be equal, and is used by ==
. Read more
#[must_use]
fn ne(&self, other: &Rhs) -> bool
1.0.0[src]
#[must_use]
fn ne(&self, other: &Rhs) -> bool
This method tests for !=
.
impl PartialOrd for Rule
[src]
impl PartialOrd for Rule
fn partial_cmp(&self, other: &Rule) -> Option<Ordering>
[src]
fn partial_cmp(&self, other: &Rule) -> Option<Ordering>
This method returns an ordering between self
and other
values if one exists. Read more
#[must_use]
fn lt(&self, other: &Rhs) -> bool
1.0.0[src]
#[must_use]
fn lt(&self, other: &Rhs) -> bool
This method tests less than (for self
and other
) and is used by the <
operator. Read more
#[must_use]
fn le(&self, other: &Rhs) -> bool
1.0.0[src]
#[must_use]
fn le(&self, other: &Rhs) -> bool
This method tests less than or equal to (for self
and other
) and is used by the <=
operator. Read more
#[must_use]
fn gt(&self, other: &Rhs) -> bool
1.0.0[src]
#[must_use]
fn gt(&self, other: &Rhs) -> bool
This method tests greater than (for self
and other
) and is used by the >
operator. Read more
#[must_use]
fn ge(&self, other: &Rhs) -> bool
1.0.0[src]
#[must_use]
fn ge(&self, other: &Rhs) -> bool
This method tests greater than or equal to (for self
and other
) and is used by the >=
operator. Read more
impl Parser<Rule> for PestParser
[src]
impl Parser<Rule> for PestParser