pub enum IrStdBinaryOp {
Show 16 variants
BitAnd,
BitOr,
BitXor,
Shl,
Shr,
Add,
Sub,
Mul,
Div,
Rem,
Eq,
Ne,
Lt,
Le,
Gt,
Ge,
}Variants§
Trait Implementations§
Source§impl Clone for IrStdBinaryOp
impl Clone for IrStdBinaryOp
Source§fn clone(&self) -> IrStdBinaryOp
fn clone(&self) -> IrStdBinaryOp
Returns a duplicate 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 IrStdBinaryOp
impl Debug for IrStdBinaryOp
Source§impl Display for IrStdBinaryOp
impl Display for IrStdBinaryOp
Source§impl FromStr for IrStdBinaryOp
impl FromStr for IrStdBinaryOp
Source§impl Hash for IrStdBinaryOp
impl Hash for IrStdBinaryOp
Auto Trait Implementations§
impl Freeze for IrStdBinaryOp
impl RefUnwindSafe for IrStdBinaryOp
impl Send for IrStdBinaryOp
impl Sync for IrStdBinaryOp
impl Unpin for IrStdBinaryOp
impl UnwindSafe for IrStdBinaryOp
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