pub struct Table {
pub name: Symbol,
pub ty: Type,
pub cells: Vec<i128>,
}Expand description
One array a pass has asked for.
Fields§
§name: SymbolThe name its load was written against.
ty: TypeThe type of every cell, which is an integer of a whole number of bytes.
cells: Vec<i128>The cells in order, each read with its own sign and held at the type’s width when written.
Trait Implementations§
impl Eq for Table
impl StructuralPartialEq for Table
Auto Trait Implementations§
impl Freeze for Table
impl RefUnwindSafe for Table
impl Send for Table
impl Sync for Table
impl Unpin for Table
impl UnsafeUnpin for Table
impl UnwindSafe for Table
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