Struct llvm_ir::instruction::Load
source · 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 14 docs on the ‘load’ instruction
Fields§
§address: Operand
§dest: Name
§volatile: bool
§atomicity: Option<Atomicity>
§alignment: u32
§debugloc: Option<DebugLoc>
Trait Implementations§
source§impl From<Load> for Instruction
impl From<Load> for Instruction
source§fn from(inst: Load) -> Instruction
fn from(inst: Load) -> Instruction
Converts to this type from the input type.
source§impl HasDebugLoc for Load
impl HasDebugLoc for Load
source§impl PartialEq<Load> for Load
impl PartialEq<Load> for Load
source§impl TryFrom<Instruction> for Load
impl TryFrom<Instruction> for Load
impl StructuralPartialEq for Load
Auto Trait Implementations§
impl RefUnwindSafe for Load
impl Send for Load
impl Sync for Load
impl Unpin for Load
impl UnwindSafe for Load
Blanket Implementations§
source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere T: ?Sized,
source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more