Struct pest::prec_climber::Operator[][src]

pub struct Operator<R: RuleType> { /* fields omitted */ }

Infix operator used in PrecClimber.

Methods

impl<R: RuleType> Operator<R>
[src]

Creates a new Operator from a Rule and Assoc.

Examples

Operator::new(Rule::plus, Assoc::Left) | Operator::new(Rule::minus, Assoc::Right);

Trait Implementations

impl<R: Debug + RuleType> Debug for Operator<R>
[src]

Formats the value using the given formatter. Read more

impl<R: RuleType> BitOr for Operator<R>
[src]

The resulting type after applying the | operator.

Performs the | operation.

Auto Trait Implementations

impl<R> Send for Operator<R> where
    R: Send

impl<R> Sync for Operator<R> where
    R: Sync