wasm/execution/runtime_structure/
global_instances.rs

1use crate::{GlobalType, Value};
2
3#[derive(Debug)]
4pub struct GlobalInst {
5    pub ty: GlobalType,
6    /// Must be of the same type as specified in `ty`
7    pub value: Value,
8}