pub enum ExprPrec {
Inertial,
Condition,
Logical,
Relational,
Shift,
Range,
Add,
Sign,
Mul,
Pow,
Unary,
Primary,
}
Expand description
The precedence of an expression.
Variants§
Trait Implementations§
Source§impl Ord for ExprPrec
impl Ord for ExprPrec
Source§impl PartialOrd for ExprPrec
impl PartialOrd for ExprPrec
impl Copy for ExprPrec
impl Eq for ExprPrec
impl StructuralPartialEq for ExprPrec
Auto Trait Implementations§
impl Freeze for ExprPrec
impl RefUnwindSafe for ExprPrec
impl Send for ExprPrec
impl Sync for ExprPrec
impl Unpin for ExprPrec
impl UnwindSafe for ExprPrec
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