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

@@ -15,7 +15,7 @@ use wasmer_vm::{Global as RuntimeGlobal, VMExportGlobal};
/// A global instance is the runtime representation of a global variable.
/// It consists of an individual value and a flag indicating whether it is mutable.
///
/// Spec: https://webassembly.github.io/spec/core/exec/runtime.html#global-instances
/// Spec: <https://webassembly.github.io/spec/core/exec/runtime.html#global-instances>
#[derive(Clone)]
pub struct Global {
store: Store,