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

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

Infix operator used in PrecClimber.

Methods

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

pub fn new(rule: R, assoc: Assoc) -> 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]

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

type Output = Self

The resulting type after applying the | operator.

Auto Trait Implementations

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

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

Blanket Implementations

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

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]