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