pub struct LoadStoreOptions<'c> { /* private fields */ }Expand description
Load/store options.
Implementations§
Source§impl<'c> LoadStoreOptions<'c>
impl<'c> LoadStoreOptions<'c>
Sourcepub fn align(self, align: Option<IntegerAttribute<'c>>) -> Self
pub fn align(self, align: Option<IntegerAttribute<'c>>) -> Self
Sets an alignment.
Sourcepub fn nontemporal(self, nontemporal: bool) -> Self
pub fn nontemporal(self, nontemporal: bool) -> Self
Sets a nontemporal flag.
Sourcepub fn access_groups(self, access_groups: Option<ArrayAttribute<'c>>) -> Self
pub fn access_groups(self, access_groups: Option<ArrayAttribute<'c>>) -> Self
Sets access groups.
Sourcepub fn alias_scopes(self, alias_scopes: Option<ArrayAttribute<'c>>) -> Self
pub fn alias_scopes(self, alias_scopes: Option<ArrayAttribute<'c>>) -> Self
Sets alias scopes.
Sourcepub fn nonalias_scopes(self, noalias_scopes: Option<ArrayAttribute<'c>>) -> Self
pub fn nonalias_scopes(self, noalias_scopes: Option<ArrayAttribute<'c>>) -> Self
Sets noalias scopes.
Sourcepub const fn tbaa(self, tbaa: ArrayAttribute<'c>) -> Self
pub const fn tbaa(self, tbaa: ArrayAttribute<'c>) -> Self
Sets TBAA metadata.
Trait Implementations§
Source§impl<'c> Clone for LoadStoreOptions<'c>
impl<'c> Clone for LoadStoreOptions<'c>
Source§fn clone(&self) -> LoadStoreOptions<'c>
fn clone(&self) -> LoadStoreOptions<'c>
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl<'c> Debug for LoadStoreOptions<'c>
impl<'c> Debug for LoadStoreOptions<'c>
Source§impl<'c> Default for LoadStoreOptions<'c>
impl<'c> Default for LoadStoreOptions<'c>
Source§fn default() -> LoadStoreOptions<'c>
fn default() -> LoadStoreOptions<'c>
Returns the “default value” for a type. Read more
impl<'c> Copy for LoadStoreOptions<'c>
Auto Trait Implementations§
impl<'c> Freeze for LoadStoreOptions<'c>
impl<'c> RefUnwindSafe for LoadStoreOptions<'c>
impl<'c> !Send for LoadStoreOptions<'c>
impl<'c> !Sync for LoadStoreOptions<'c>
impl<'c> Unpin for LoadStoreOptions<'c>
impl<'c> UnsafeUnpin for LoadStoreOptions<'c>
impl<'c> UnwindSafe for LoadStoreOptions<'c>
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