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