[−][src]Struct wasmtime_environ::wasm::Global
A WebAssembly global.
Note that we record both the original Wasm type and the Cranelift IR type
used to represent it. This is because multiple different kinds of Wasm types
might be represented with the same Cranelift IR type. For example, both a
Wasm i64
and a funcref
might be represented with a Cranelift i64
on
64-bit architectures, and when GC is not required for func refs.
Fields
wasm_ty: WasmType
The Wasm type of the value stored in the global.
ty: Type
The Cranelift IR type of the value stored in the global.
mutability: bool
A flag indicating whether the value may change at runtime.
initializer: GlobalInit
The source of the initial value.
Trait Implementations
impl Clone for Global
[src]
impl Copy for Global
[src]
impl Debug for Global
[src]
impl<'de> Deserialize<'de> for Global
[src]
fn deserialize<__D>(
__deserializer: __D
) -> Result<Global, <__D as Deserializer<'de>>::Error> where
__D: Deserializer<'de>,
[src]
__deserializer: __D
) -> Result<Global, <__D as Deserializer<'de>>::Error> where
__D: Deserializer<'de>,
impl Eq for Global
[src]
impl Hash for Global
[src]
fn hash<__H>(&self, state: &mut __H) where
__H: Hasher,
[src]
__H: Hasher,
fn hash_slice<H>(data: &[Self], state: &mut H) where
H: Hasher,
1.3.0[src]
H: Hasher,
impl PartialEq<Global> for Global
[src]
impl Serialize for Global
[src]
fn serialize<__S>(
&self,
__serializer: __S
) -> Result<<__S as Serializer>::Ok, <__S as Serializer>::Error> where
__S: Serializer,
[src]
&self,
__serializer: __S
) -> Result<<__S as Serializer>::Ok, <__S as Serializer>::Error> where
__S: Serializer,
impl StructuralEq for Global
[src]
impl StructuralPartialEq for Global
[src]
Auto Trait Implementations
impl RefUnwindSafe for Global
impl Send for Global
impl Sync for Global
impl Unpin for Global
impl UnwindSafe for Global
Blanket Implementations
impl<T> Any for T where
T: 'static + ?Sized,
[src]
T: 'static + ?Sized,
impl<T> Borrow<T> for T where
T: ?Sized,
[src]
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
[src]
T: ?Sized,
fn borrow_mut(&mut self) -> &mut T
[src]
impl<T> DeserializeOwned for T where
T: for<'de> Deserialize<'de>,
[src]
T: for<'de> Deserialize<'de>,
impl<Q, K> Equivalent<K> for Q where
K: Borrow<Q> + ?Sized,
Q: Eq + ?Sized,
[src]
K: Borrow<Q> + ?Sized,
Q: Eq + ?Sized,
fn equivalent(&self, key: &K) -> bool
[src]
impl<T> From<T> for T
[src]
impl<T, U> Into<U> for T where
U: From<T>,
[src]
U: From<T>,
impl<T> Same<T> for T
type Output = T
Should always be Self
impl<T> ToOwned for T where
T: Clone,
[src]
T: Clone,
type Owned = T
The resulting type after obtaining ownership.
fn to_owned(&self) -> T
[src]
fn clone_into(&self, target: &mut T)
[src]
impl<T, U> TryFrom<U> for T where
U: Into<T>,
[src]
U: Into<T>,
type Error = Infallible
The type returned in the event of a conversion error.
fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>
[src]
impl<T, U> TryInto<U> for T where
U: TryFrom<T>,
[src]
U: TryFrom<T>,