pub struct Table(/* private fields */);Expand description
An opaque reference to a WebAssembly table.
Tables are used to store a list of function references.
They can be created with FuncEnvironment::make_table.
They can be used with
FuncEnvironment::translate_call_indirect.
While the order is stable, it is arbitrary.
Implementations§
Trait Implementations§
Source§impl Ord for Table
impl Ord for Table
Source§impl PartialOrd for Table
impl PartialOrd for Table
Source§impl ReservedValue for Table
impl ReservedValue for Table
Source§fn reserved_value() -> Table
fn reserved_value() -> Table
Create an instance of the reserved value.
Source§fn is_reserved_value(&self) -> bool
fn is_reserved_value(&self) -> bool
Checks whether value is the reserved one.
impl Copy for Table
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 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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key and return true if they are equal.