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
sourceimpl Clone for ExportTable
impl Clone for ExportTable
sourcefn clone(&self) -> ExportTable
fn clone(&self) -> ExportTable
Returns a copy of the value. Read more
1.0.0 · sourcefn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from source
. Read more
sourceimpl Debug for ExportTable
impl Debug for ExportTable
sourceimpl From<ExportTable> for Export
impl From<ExportTable> for Export
sourcefn from(func: ExportTable) -> Export
fn from(func: ExportTable) -> Export
Performs the conversion.
impl Send for ExportTable
impl Sync for ExportTable
Auto Trait Implementations
Blanket Implementations
sourceimpl<T> BorrowMut<T> for T where
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
sourceimpl<T> ToOwned for T where
T: Clone,
impl<T> ToOwned for T where
T: Clone,
type Owned = T
type Owned = T
The resulting type after obtaining ownership.
sourcefn clone_into(&self, target: &mut T)
fn clone_into(&self, target: &mut T)
🔬 This is a nightly-only experimental API. (
toowned_clone_into
)Uses borrowed data to replace owned data, usually by cloning. Read more