Struct llvm_ir::instruction::Store [−][src]
pub struct Store { pub address: Operand, pub value: Operand, pub volatile: bool, pub atomicity: Option<Atomicity>, pub alignment: u32, pub debugloc: Option<DebugLoc>, }
Expand description
Store a value to memory. See LLVM 12 docs on the ‘store’ instruction
Fields
address: Operand
value: Operand
volatile: bool
atomicity: Option<Atomicity>
alignment: u32
debugloc: Option<DebugLoc>
Trait Implementations
Performs the conversion.
Returns the DebugLoc
associated with the given Instruction
,
Terminator
, GlobalVariable
, or Function
; or None
if it doesn’t
have a DebugLoc
. Read more
Auto Trait Implementations
impl RefUnwindSafe for Store
impl UnwindSafe for Store
Blanket Implementations
Mutably borrows from an owned value. Read more