Enum pest::pratt_parser::Assoc
source · pub enum Assoc {
Left,
Right,
}
Expand description
Associativity of an infix binary operator, used by Op::infix(Assoc)
.
Variants§
Left
Left operator associativity. Evaluate expressions from left-to-right.
Right
Right operator associativity. Evaluate expressions from right-to-left.
Trait Implementations§
source§impl PartialEq<Assoc> for Assoc
impl PartialEq<Assoc> for Assoc
impl Copy for Assoc
impl Eq for Assoc
impl StructuralEq for Assoc
impl StructuralPartialEq for Assoc
Auto Trait Implementations§
impl RefUnwindSafe for Assoc
impl Send for Assoc
impl Sync for Assoc
impl Unpin for Assoc
impl UnwindSafe for Assoc
Blanket Implementations§
source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere T: ?Sized,
source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more