#[repr(C)]pub enum UnaryOp {
Minus = 0,
BitwiseNegate = 1,
LogicalNegate = 2,
Abs = 3,
}Expand description
UnaryOp is an enum representing the various unary operations that gccjit knows how to codegen.
Variants§
Trait Implementations§
Auto Trait Implementations§
impl Freeze for UnaryOp
impl RefUnwindSafe for UnaryOp
impl Send for UnaryOp
impl Sync for UnaryOp
impl Unpin for UnaryOp
impl UnwindSafe for UnaryOp
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