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