Enum moore_svlog::token::Precedence [−][src]
pub enum Precedence {
Show 21 variants
Min,
MinTypMax,
Concatenation,
Assignment,
Implication,
Ternary,
LogicOr,
LogicAnd,
BitOr,
BitXor,
BitAnd,
Equality,
Relational,
Shift,
Add,
Mul,
Pow,
Unary,
Postfix,
Scope,
Max,
}
Expand description
Expression precedence. Note that a few kinds of expression are right-associative rather than the default left-associative.
Variants
Trait Implementations
This method returns an ordering between self
and other
values if one exists. Read more
This method tests less than (for self
and other
) and is used by the <
operator. Read more
This method tests less than or equal to (for self
and other
) and is used by the <=
operator. Read more
This method tests greater than (for self
and other
) and is used by the >
operator. Read more
Auto Trait Implementations
impl RefUnwindSafe for Precedence
impl Send for Precedence
impl Sync for Precedence
impl Unpin for Precedence
impl UnwindSafe for Precedence
Blanket Implementations
Mutably borrows from an owned value. Read more