[−]Enum wasmer_runtime::types::GlobalInit
Globals are initialized via the const operators or by referring to another import.
Variants
I32Const(i32)An i32.const.
I64Const(i64)An i64.const.
F32Const(f32)An f32.const.
F64Const(f64)An f64.const.
A v128.const.
GetGlobal(GlobalIndex)A global.get of another global.
A ref.null.
RefFunc(FunctionIndex)A ref.func <index>.
Implementations
impl GlobalInit
pub fn from_value<T>(value: Value<T>) -> GlobalInit
Get the GlobalInit from a given Value
pub fn to_value<T>(&self) -> Value<T>
Get the Value from the Global init value
Trait Implementations
impl Clone for GlobalInit
fn clone(&self) -> GlobalInit
fn clone_from(&mut self, source: &Self)1.0.0[src]
impl Copy for GlobalInit
impl Debug for GlobalInit
impl<'de> Deserialize<'de> for GlobalInit
fn deserialize<__D>(
__deserializer: __D
) -> Result<GlobalInit, <__D as Deserializer<'de>>::Error> where
__D: Deserializer<'de>,
__deserializer: __D
) -> Result<GlobalInit, <__D as Deserializer<'de>>::Error> where
__D: Deserializer<'de>,
impl Serialize for GlobalInit
fn serialize<__S>(
&self,
__serializer: __S
) -> Result<<__S as Serializer>::Ok, <__S as Serializer>::Error> where
__S: Serializer,
&self,
__serializer: __S
) -> Result<<__S as Serializer>::Ok, <__S as Serializer>::Error> where
__S: Serializer,
Auto Trait Implementations
impl RefUnwindSafe for GlobalInit
impl Send for GlobalInit
impl Sync for GlobalInit
impl Unpin for GlobalInit
impl UnwindSafe for GlobalInit
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<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>,