Struct wasmtime_runtime::ExportTable
source · pub struct ExportTable {
pub definition: *mut VMTableDefinition,
pub vmctx: *mut VMContext,
pub table: TablePlan,
}
Expand description
A table export value.
Fields§
§definition: *mut VMTableDefinition
The address of the table descriptor.
vmctx: *mut VMContext
Pointer to the containing VMContext
.
table: TablePlan
The table declaration, used for compatibilty checking.
Trait Implementations§
source§impl Clone for ExportTable
impl Clone for ExportTable
source§fn clone(&self) -> ExportTable
fn clone(&self) -> ExportTable
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 Debug for ExportTable
impl Debug for ExportTable
source§impl From<ExportTable> for Export
impl From<ExportTable> for Export
source§fn from(func: ExportTable) -> Export
fn from(func: ExportTable) -> Export
Converts to this type from the input type.