[][src]Struct wasmer_runtime_core::global::Global

pub struct Global { /* fields omitted */ }

Methods

impl Global[src]

pub fn new(value: Value) -> Self[src]

Create a new Global value.

Usage:

let global = Global::new(Value::I32(42));

pub fn new_mutable(value: Value) -> Self[src]

Create a new, mutable Global value.

Usage:

let global = Global::new_mutable(Value::I32(42));

pub fn descriptor(&self) -> GlobalDescriptor[src]

Get the GlobalDescriptor generated for this global.

pub fn set(&self, value: Value)[src]

Set the value help by this global.

This method will panic if the value is the wrong type.

pub fn get(&self) -> Value[src]

Get the value held by this global.

Trait Implementations

impl IsExport for Global[src]

impl Clone for Global[src]

fn clone_from(&mut self, source: &Self)
1.0.0
[src]

Performs copy-assignment from source. Read more

impl Debug for Global[src]

Auto Trait Implementations

impl !Send for Global

impl !Sync for Global

Blanket Implementations

impl<T> From for T[src]

impl<T, U> Into for T where
    U: From<T>, 
[src]

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

impl<T, U> TryFrom for T where
    U: Into<T>, 
[src]

type Error = !

🔬 This is a nightly-only experimental API. (try_from)

The type returned in the event of a conversion error.

impl<T> Borrow for T where
    T: ?Sized
[src]

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> BorrowMut for T where
    T: ?Sized
[src]

impl<T, U> TryInto for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

🔬 This is a nightly-only experimental API. (try_from)

The type returned in the event of a conversion error.

impl<T> Erased for T