Struct llvm_ir::instruction::URem
source · pub struct URem {
pub operand0: Operand,
pub operand1: Operand,
pub dest: Name,
pub debugloc: Option<DebugLoc>,
}
Expand description
Unsigned integer remainder. See LLVM 14 docs on the ‘urem’ instruction
Fields§
§operand0: Operand
§operand1: Operand
§dest: Name
§debugloc: Option<DebugLoc>
Trait Implementations§
source§impl BinaryOp for URem
impl BinaryOp for URem
fn get_operand0(&self) -> &Operand
fn get_operand1(&self) -> &Operand
source§impl From<URem> for Instruction
impl From<URem> for Instruction
source§fn from(inst: URem) -> Instruction
fn from(inst: URem) -> Instruction
Converts to this type from the input type.
source§impl HasDebugLoc for URem
impl HasDebugLoc for URem
source§impl PartialEq<URem> for URem
impl PartialEq<URem> for URem
source§impl TryFrom<Instruction> for URem
impl TryFrom<Instruction> for URem
impl StructuralPartialEq for URem
Auto Trait Implementations§
impl RefUnwindSafe for URem
impl Send for URem
impl Sync for URem
impl Unpin for URem
impl UnwindSafe for URem
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