pub struct ArrayInit<'a> {
pub array: Index<'a>,
pub segment: Index<'a>,
}Expand description
Extra data associated with the array.init_[data/elem] instruction
Fields§
§array: Index<'a>The index of the array type we’re initializing.
segment: Index<'a>The index of the data or elem segment we’re reading from.
Trait Implementations§
Auto Trait Implementations§
impl<'a> Freeze for ArrayInit<'a>
impl<'a> RefUnwindSafe for ArrayInit<'a>
impl<'a> Send for ArrayInit<'a>
impl<'a> Sync for ArrayInit<'a>
impl<'a> Unpin for ArrayInit<'a>
impl<'a> UnwindSafe for ArrayInit<'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