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