Struct perplex::glr::RuleSlice[][src]

pub struct RuleSlice {
    pub rule: RuleId,
    pub from: usize,
    pub to: usize,
}

A resolution to a local ambiguity in a grammar.

Fields

The rule in the grammar this slice refers to.

The first symbol of the slice, inclusive.

The last symbol of the slice, exclusive.

Methods

impl RuleSlice
[src]

Get a pretty printer for this rule slice.

Trait Implementations

impl Debug for RuleSlice
[src]

Formats the value using the given formatter. Read more

impl Clone for RuleSlice
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl PartialEq for RuleSlice
[src]

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

This method tests for !=.

impl Eq for RuleSlice
[src]

impl PartialOrd for RuleSlice
[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

impl Ord for RuleSlice
[src]

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

Compares and returns the maximum of two values. Read more

Compares and returns the minimum of two values. Read more

impl Hash for RuleSlice
[src]

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

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

Auto Trait Implementations

impl Send for RuleSlice

impl Sync for RuleSlice