pub struct MemoryCopy<'a> {
pub src: Index<'a>,
pub dst: Index<'a>,
}
Expand description
Extra data associated with the memory.copy
instruction
Fields§
§src: Index<'a>
The index of the memory we’re copying from.
dst: Index<'a>
The index of the memory we’re copying to.
Trait Implementations§
Source§impl<'a> Clone for MemoryCopy<'a>
impl<'a> Clone for MemoryCopy<'a>
Source§fn clone(&self) -> MemoryCopy<'a>
fn clone(&self) -> MemoryCopy<'a>
Returns a copy 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<'a> Debug for MemoryCopy<'a>
impl<'a> Debug for MemoryCopy<'a>
Auto Trait Implementations§
impl<'a> Freeze for MemoryCopy<'a>
impl<'a> RefUnwindSafe for MemoryCopy<'a>
impl<'a> Send for MemoryCopy<'a>
impl<'a> Sync for MemoryCopy<'a>
impl<'a> Unpin for MemoryCopy<'a>
impl<'a> UnwindSafe for MemoryCopy<'a>
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