mirror of
https://github.com/mii443/wasmer.git
synced 2025-12-07 05:08:19 +00:00
10 lines
217 B
Rust
10 lines
217 B
Rust
struct Global {}
|
|
|
|
impl Global {
|
|
fn new(value: Value) -> Self;
|
|
fn new_mutable(value: Value) -> Self;
|
|
fn descriptor(&self) -> GlobalDescriptor;
|
|
fn set(&self, value: Value);
|
|
fn get(&self) -> Value;
|
|
}
|