enum Precedence {
Iff,
Implies,
Or,
And,
Compare,
BitOr,
BitXor,
BitAnd,
Shift,
Sum,
Product,
Prefix,
}
Variants§
Iff
<=>
Implies
=>
Or
||
And
&&
Compare
== != < > <= >=
BitOr
|
BitXor
^
BitAnd
&
Shift
<< >>
Sum
Product
- / %
Prefix
unary - and !
Implementations§
Source§impl Precedence
impl Precedence
const MIN: Self = Precedence::Iff
fn of_binop(op: &BinOp) -> Precedence
fn next(self) -> Precedence
fn associativity(self) -> Associativity
Trait Implementations§
Source§impl Clone for Precedence
impl Clone for Precedence
Source§fn clone(&self) -> Precedence
fn clone(&self) -> Precedence
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 Precedence
impl Debug for Precedence
Source§impl PartialEq for Precedence
impl PartialEq for Precedence
Source§impl PartialOrd for Precedence
impl PartialOrd for Precedence
impl Copy for Precedence
impl StructuralPartialEq for Precedence
Auto Trait Implementations§
impl Freeze for Precedence
impl RefUnwindSafe for Precedence
impl Send for Precedence
impl Sync for Precedence
impl Unpin for Precedence
impl UnwindSafe for Precedence
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