Struct cton_wasm::Global [] [src]

pub struct Global {
    pub ty: Type,
    pub mutability: bool,
    pub initializer: GlobalInit,
}

WebAssembly global.

Fields

The type of the value stored in the global.

A flag indicating whether the value may change at runtime.

The source of the initial value.

Trait Implementations

impl Debug for Global
[src]

[src]

Formats the value using the given formatter. Read more

impl Clone for Global
[src]

[src]

Returns a copy of the value. Read more

1.0.0
[src]

Performs copy-assignment from source. Read more

impl Copy for Global
[src]

Auto Trait Implementations

impl Send for Global

impl Sync for Global