Enum wasmer_types::GlobalInit [−][src]
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.
V128Const(V128)A v128.const.
GetGlobal(GlobalIndex)A global.get of another global.
A ref.null.
RefFunc(FunctionIndex)A ref.func <index>.
Implementations
impl GlobalInit[src]
pub fn from_value<T>(value: Value<T>) -> Self[src]
Get the GlobalInit from a given Value
pub fn to_value<T>(&self) -> Value<T>[src]
Get the Value from the Global init value
Trait Implementations
impl Clone for GlobalInit[src]
fn clone(&self) -> GlobalInit[src]
pub fn clone_from(&mut self, source: &Self)1.0.0[src]
impl Copy for GlobalInit[src]
impl Debug for GlobalInit[src]
impl<'de> Deserialize<'de> for GlobalInit[src]
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error> where
__D: Deserializer<'de>, [src]
__D: Deserializer<'de>,
impl Serialize for GlobalInit[src]
Auto Trait Implementations
impl RefUnwindSafe for GlobalInit[src]
impl Send for GlobalInit[src]
impl Sync for GlobalInit[src]
impl Unpin for GlobalInit[src]
impl UnwindSafe for GlobalInit[src]
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,
pub 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> ToOwned for T where
T: Clone, [src]
T: Clone,
type Owned = T
The resulting type after obtaining ownership.
pub fn to_owned(&self) -> T[src]
pub 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.
pub 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>,