Improve Wasmer API intro docs

This commit is contained in:
Mark McCaskey
2020-12-07 13:29:53 -08:00
parent 4768bc27bf
commit d54a8b8676
10 changed files with 208 additions and 10 deletions

View File

@@ -16,7 +16,7 @@ use wasmer_vm::{Table as RuntimeTable, VMCallerCheckedAnyfunc, VMExportTable};
/// A table created by the host or in WebAssembly code will be accessible and
/// mutable from both host and WebAssembly.
///
/// Spec: https://webassembly.github.io/spec/core/exec/runtime.html#table-instances
/// Spec: <https://webassembly.github.io/spec/core/exec/runtime.html#table-instances>
#[derive(Clone)]
pub struct Table {
store: Store,