pub struct MemcpyInlineOperation<'c> { /* private fields */ }
Expand description
An intr.memcpy.inline
operation.
Implementations§
source§impl<'c> MemcpyInlineOperation<'c>
impl<'c> MemcpyInlineOperation<'c>
sourcepub fn as_operation(&self) -> &Operation<'c>
pub fn as_operation(&self) -> &Operation<'c>
Returns a generic operation.
sourcepub fn builder(
context: &'c Context,
location: Location<'c>
) -> MemcpyInlineOperationBuilder<'c, Unset, Unset, Unset, Unset>
pub fn builder( context: &'c Context, location: Location<'c> ) -> MemcpyInlineOperationBuilder<'c, Unset, Unset, Unset, Unset>
Creates a builder.
pub fn dst(&self) -> Result<Value<'c, '_>, Error>
pub fn src(&self) -> Result<Value<'c, '_>, Error>
pub fn len(&self) -> Result<IntegerAttribute<'c>, Error>
pub fn set_len(&mut self, value: IntegerAttribute<'c>)
pub fn is_volatile(&self) -> Result<IntegerAttribute<'c>, Error>
pub fn set_is_volatile(&mut self, value: IntegerAttribute<'c>)
pub fn access_groups(&self) -> Result<ArrayAttribute<'c>, Error>
pub fn set_access_groups(&mut self, value: ArrayAttribute<'c>)
pub fn remove_access_groups(&mut self) -> Result<(), Error>
pub fn alias_scopes(&self) -> Result<ArrayAttribute<'c>, Error>
pub fn set_alias_scopes(&mut self, value: ArrayAttribute<'c>)
pub fn remove_alias_scopes(&mut self) -> Result<(), Error>
pub fn noalias_scopes(&self) -> Result<ArrayAttribute<'c>, Error>
pub fn set_noalias_scopes(&mut self, value: ArrayAttribute<'c>)
pub fn remove_noalias_scopes(&mut self) -> Result<(), Error>
pub fn tbaa(&self) -> Result<ArrayAttribute<'c>, Error>
pub fn set_tbaa(&mut self, value: ArrayAttribute<'c>)
pub fn remove_tbaa(&mut self) -> Result<(), Error>
Trait Implementations§
source§impl<'c> From<MemcpyInlineOperation<'c>> for Operation<'c>
impl<'c> From<MemcpyInlineOperation<'c>> for Operation<'c>
source§fn from(operation: MemcpyInlineOperation<'c>) -> Self
fn from(operation: MemcpyInlineOperation<'c>) -> Self
Converts to this type from the input type.
Auto Trait Implementations§
impl<'c> RefUnwindSafe for MemcpyInlineOperation<'c>
impl<'c> !Send for MemcpyInlineOperation<'c>
impl<'c> !Sync for MemcpyInlineOperation<'c>
impl<'c> Unpin for MemcpyInlineOperation<'c>
impl<'c> UnwindSafe for MemcpyInlineOperation<'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