pub enum ArrayInstruction {
NewArray {
type_tag: u8,
dim0: u16,
dim1: u16,
},
GetItem {
ndims: u16,
},
}Expand description
Array construction and indexing instructions (device code 0x13).
Variants§
Trait Implementations§
Source§impl Clone for ArrayInstruction
impl Clone for ArrayInstruction
Source§fn clone(&self) -> ArrayInstruction
fn clone(&self) -> ArrayInstruction
Returns a duplicate 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 Debug for ArrayInstruction
impl Debug for ArrayInstruction
Source§impl PartialEq for ArrayInstruction
impl PartialEq for ArrayInstruction
impl Copy for ArrayInstruction
impl Eq for ArrayInstruction
impl StructuralPartialEq for ArrayInstruction
Auto Trait Implementations§
impl Freeze for ArrayInstruction
impl RefUnwindSafe for ArrayInstruction
impl Send for ArrayInstruction
impl Sync for ArrayInstruction
impl Unpin for ArrayInstruction
impl UnwindSafe for ArrayInstruction
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