pub enum CBinOp {
Show 18 variants
Add,
Sub,
Mul,
Div,
Mod,
Eq,
Neq,
Lt,
Le,
Gt,
Ge,
And,
Or,
BitAnd,
BitOr,
BitXor,
Shl,
Shr,
}Expand description
Binary operator in C expressions.
Variants§
Trait Implementations§
impl Copy for CBinOp
impl Eq for CBinOp
impl StructuralPartialEq for CBinOp
Auto Trait Implementations§
impl Freeze for CBinOp
impl RefUnwindSafe for CBinOp
impl Send for CBinOp
impl Sync for CBinOp
impl Unpin for CBinOp
impl UnsafeUnpin for CBinOp
impl UnwindSafe for CBinOp
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