Struct BinaryOp
pub struct BinaryOp
{ /* private fields */ }
Implementations
impl BinaryOp
pub fn is_add(self) -> bool
pub fn is_subtract(self) -> bool
pub fn is_multiply(self) -> bool
pub fn is_divide(self) -> bool
pub fn is_equal(self) -> bool
pub fn is_not_equal(self) -> bool
pub fn is_less_than(self) -> bool
pub fn is_less_than_or_equal(self) -> bool
pub fn is_greater_than(self) -> bool
pub fn is_greater_than_or_equal(self) -> bool
pub fn is_and(self) -> bool
pub fn is_or(self) -> bool
pub fn is_xor(self) -> bool
pub fn is_shift_right(self) -> bool
pub fn is_shift_left(self) -> bool
pub fn is_modulo(self) -> bool
pub comptime fn quoted(self) -> Quoted
Trait implementations
impl Eq for BinaryOp
pub fn eq(self, other: Self) -> bool
impl Hash for BinaryOp
pub fn hash<H>(self, h: &mut H)
where
H: Hasher