Struct wast::core::ArrayNewData  
source · pub struct ArrayNewData<'a> {
    pub array: Index<'a>,
    pub data_idx: Index<'a>,
}Expand description
Extra data associated with the array.new_data instruction
Fields§
§array: Index<'a>The index of the array type we’re accessing.
data_idx: Index<'a>The data segment to initialize from.
Trait Implementations§
source§impl<'a> Clone for ArrayNewData<'a>
 
impl<'a> Clone for ArrayNewData<'a>
source§fn clone(&self) -> ArrayNewData<'a>
 
fn clone(&self) -> ArrayNewData<'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 ArrayNewData<'a>
 
impl<'a> Debug for ArrayNewData<'a>
Auto Trait Implementations§
impl<'a> Freeze for ArrayNewData<'a>
impl<'a> RefUnwindSafe for ArrayNewData<'a>
impl<'a> Send for ArrayNewData<'a>
impl<'a> Sync for ArrayNewData<'a>
impl<'a> Unpin for ArrayNewData<'a>
impl<'a> UnwindSafe for ArrayNewData<'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