Struct wasmparser::Global
source · pub struct Global<'a> {
pub ty: GlobalType,
pub init_expr: ConstExpr<'a>,
}
Expand description
Represents a core WebAssembly global.
Fields§
§ty: GlobalType
The global’s type.
init_expr: ConstExpr<'a>
The global’s initialization expression.
Trait Implementations§
source§impl<'a> FromReader<'a> for Global<'a>
impl<'a> FromReader<'a> for Global<'a>
source§fn from_reader(reader: &mut BinaryReader<'a>) -> Result<Self>
fn from_reader(reader: &mut BinaryReader<'a>) -> Result<Self>
Attempts to read
Self
from the provided binary reader, returning an
error if it is unable to do so.