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
sourceimpl BinaryOp for URem
impl BinaryOp for URem
fn get_operand0(&self) -> &Operand
fn get_operand1(&self) -> &Operand
sourceimpl From<URem> for Instruction
impl From<URem> for Instruction
sourcefn from(inst: URem) -> Instruction
fn from(inst: URem) -> Instruction
Converts to this type from the input type.
sourceimpl HasDebugLoc for URem
impl HasDebugLoc for URem
sourcefn get_debug_loc(&self) -> &Option<DebugLoc>
fn get_debug_loc(&self) -> &Option<DebugLoc>
Returns the DebugLoc
associated with the given Instruction
,
Terminator
, GlobalVariable
, or Function
; or None
if it doesn’t
have a DebugLoc
. Read more
sourceimpl PartialEq<URem> for URem
impl PartialEq<URem> for URem
sourceimpl 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
sourceimpl<T> BorrowMut<T> for T where
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more