pub enum PrattParserAssociativity {
Left,
Right,
}
Variants§
Trait Implementations§
Source§impl Clone for PrattParserAssociativity
impl Clone for PrattParserAssociativity
Source§fn clone(&self) -> PrattParserAssociativity
fn clone(&self) -> PrattParserAssociativity
Returns a copy of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moreSource§impl Debug for PrattParserAssociativity
impl Debug for PrattParserAssociativity
Source§impl Default for PrattParserAssociativity
impl Default for PrattParserAssociativity
Source§fn default() -> PrattParserAssociativity
fn default() -> PrattParserAssociativity
Returns the “default value” for a type. Read more
Source§impl Ord for PrattParserAssociativity
impl Ord for PrattParserAssociativity
Source§fn cmp(&self, other: &PrattParserAssociativity) -> Ordering
fn cmp(&self, other: &PrattParserAssociativity) -> Ordering
1.21.0 · Source§fn max(self, other: Self) -> Selfwhere
Self: Sized,
fn max(self, other: Self) -> Selfwhere
Self: Sized,
Compares and returns the maximum of two values. Read more
Source§impl PartialEq for PrattParserAssociativity
impl PartialEq for PrattParserAssociativity
Source§impl PartialOrd for PrattParserAssociativity
impl PartialOrd for PrattParserAssociativity
impl Copy for PrattParserAssociativity
impl Eq for PrattParserAssociativity
impl StructuralPartialEq for PrattParserAssociativity
Auto Trait Implementations§
impl Freeze for PrattParserAssociativity
impl RefUnwindSafe for PrattParserAssociativity
impl Send for PrattParserAssociativity
impl Sync for PrattParserAssociativity
impl Unpin for PrattParserAssociativity
impl UnwindSafe for PrattParserAssociativity
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