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 14 docs on the ‘store’ instruction
Fields§
§address: Operand
§value: Operand
§volatile: bool
§atomicity: Option<Atomicity>
§alignment: u32
§debugloc: Option<DebugLoc>
Trait Implementations§
Source§impl From<Store> for Instruction
impl From<Store> for Instruction
Source§fn from(inst: Store) -> Instruction
fn from(inst: Store) -> Instruction
Converts to this type from the input type.
Source§impl HasDebugLoc for Store
impl HasDebugLoc for Store
Source§impl TryFrom<Instruction> for Store
impl TryFrom<Instruction> for Store
impl StructuralPartialEq for Store
Auto Trait Implementations§
impl Freeze for Store
impl RefUnwindSafe for Store
impl Send for Store
impl Sync for Store
impl Unpin for Store
impl UnwindSafe for Store
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self
into a Left
variant of Either<Self, Self>
if into_left
is true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self
into a Left
variant of Either<Self, Self>
if into_left(&self)
returns true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read more