pub enum BinOp {
Show 19 variants
Iff,
Imp,
Or,
And,
Eq,
Ne,
Gt,
Ge,
Lt,
Le,
Add,
Sub,
Mul,
Div,
Mod,
BitAnd,
BitOr,
BitShl,
BitShr,
}
Variants§
Trait Implementations§
Source§impl IntoDiagArg for BinOp
impl IntoDiagArg for BinOp
Source§fn into_diag_arg(self, _path: &mut Option<PathBuf>) -> DiagArgValue
fn into_diag_arg(self, _path: &mut Option<PathBuf>) -> DiagArgValue
impl Copy for BinOp
impl Eq for BinOp
impl StructuralPartialEq for BinOp
Auto Trait Implementations§
impl Freeze for BinOp
impl RefUnwindSafe for BinOp
impl Send for BinOp
impl Sync for BinOp
impl Unpin for BinOp
impl UnwindSafe for BinOp
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