Enum pest_grammars::toml::Rule [] [src]

pub enum Rule {
    toml,
    table,
    array_table,
    pair,
    key,
    value,
    inline_table,
    array,
    identifier,
    multi_line_string,
    string,
    multi_line_literal,
    literal,
    escape,
    unicode,
    hex,
    date_time,
    local_date_time,
    partial_time,
    full_date,
    full_time,
    date_fullyear,
    date_month,
    date_mday,
    time_hour,
    time_minute,
    time_second,
    time_secfrac,
    time_offset,
    integer,
    float,
    int,
    digits,
    digit,
    exp,
    boolean,
    newline,
    whitespace,
    comment,
}

Variants

Trait Implementations

impl Clone for Rule
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl Copy for Rule
[src]

impl Debug for Rule
[src]

Formats the value using the given formatter.

impl Eq for Rule
[src]

impl Hash for Rule
[src]

Feeds this value into the given [Hasher]. Read more

Feeds a slice of this type into the given [Hasher]. Read more

impl Ord for Rule
[src]

This method returns an Ordering between self and other. Read more

🔬 This is a nightly-only experimental API. (ord_max_min)

Compares and returns the maximum of two values. Read more

🔬 This is a nightly-only experimental API. (ord_max_min)

Compares and returns the minimum of two values. Read more

impl PartialEq for Rule
[src]

This method tests for self and other values to be equal, and is used by ==. Read more

This method tests for !=.

impl PartialOrd for Rule
[src]

This method returns an ordering between self and other values if one exists. Read more

This method tests less than (for self and other) and is used by the < operator. Read more

This method tests less than or equal to (for self and other) and is used by the <= operator. Read more

This method tests greater than (for self and other) and is used by the > operator. Read more

This method tests greater than or equal to (for self and other) and is used by the >= operator. Read more