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

Formats the value using the given formatter. Read more

Attempts to parse Self from parser, returning an error if it could not be parsed. Read more

Auto Trait Implementations

Blanket Implementations

Gets the TypeId of self. Read more

Immutably borrows from an owned value. Read more

Mutably borrows from an owned value. Read more

Returns the argument unchanged.

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

The type returned in the event of a conversion error.

Performs the conversion.

The type returned in the event of a conversion error.

Performs the conversion.