pub struct Table {
pub ty: TableElementType,
pub minimum: u32,
pub maximum: Option<u32>,
}
Expand description
WebAssembly table.
Fields§
§ty: TableElementType
The type of data stored in elements of the table.
minimum: u32
The minimum number of elements in the table.
maximum: Option<u32>
The maximum number of elements in the table.
Trait Implementations§
impl Copy 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 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