Struct llvm_ir::instruction::Load [−][src]
pub struct Load {
pub address: Operand,
pub dest: Name,
pub volatile: bool,
pub atomicity: Option<Atomicity>,
pub alignment: u32,
pub debugloc: Option<DebugLoc>,
}
Expand description
Load a value from memory. See LLVM 12 docs on the ‘load’ instruction
Fields
address: Operand
dest: Name
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 Load
impl UnwindSafe for Load
Blanket Implementations
Mutably borrows from an owned value. Read more