pub struct TableCopy<'a> {
pub dst: Index<'a>,
pub src: Index<'a>,
}Expand description
Extra data associated with the table.copy instruction.
Fields§
§dst: Index<'a>The index of the destination table to copy into.
src: Index<'a>The index of the source table to copy from.
Trait Implementations§
Auto Trait Implementations§
impl<'a> Freeze for TableCopy<'a>
impl<'a> RefUnwindSafe for TableCopy<'a>
impl<'a> Send for TableCopy<'a>
impl<'a> Sync for TableCopy<'a>
impl<'a> Unpin for TableCopy<'a>
impl<'a> UnwindSafe for TableCopy<'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