pub struct ArrayCopy<'a> {
pub dest_array: Index<'a>,
pub src_array: Index<'a>,
}
Expand description
Extra data associated with the array.copy
instruction
Fields§
§dest_array: Index<'a>
The index of the array type we’re copying to.
src_array: Index<'a>
The index of the array type we’re copying from.
Trait Implementations§
Auto Trait Implementations§
impl<'a> RefUnwindSafe for ArrayCopy<'a>
impl<'a> Send for ArrayCopy<'a>
impl<'a> Sync for ArrayCopy<'a>
impl<'a> Unpin for ArrayCopy<'a>
impl<'a> UnwindSafe for ArrayCopy<'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