Enum wasmi::ExternVal [−][src]
An external value is the runtime representation of an entity that can be imported or exported.
Variants
Func(FuncRef)
Table(TableRef)
Memory(MemoryRef)
Global(GlobalRef)
Should be immutable.
Implementations
impl ExternVal
[src]
pub fn as_func(&self) -> Option<&FuncRef>
[src]
Get underlying function reference if this ExternVal
contains
a function, or None
if it is some other kind.
pub fn as_table(&self) -> Option<&TableRef>
[src]
Get underlying table reference if this ExternVal
contains
a table, or None
if it is some other kind.
pub fn as_memory(&self) -> Option<&MemoryRef>
[src]
Get underlying memory reference if this ExternVal
contains
a memory, or None
if it is some other kind.
pub fn as_global(&self) -> Option<&GlobalRef>
[src]
Get underlying global variable reference if this ExternVal
contains
a global, or None
if it is some other kind.
Trait Implementations
impl Clone for ExternVal
[src]
fn clone(&self) -> Self
[src]
pub fn clone_from(&mut self, source: &Self)
1.0.0[src]
impl Debug for ExternVal
[src]
Auto Trait Implementations
impl !RefUnwindSafe for ExternVal
impl !Send for ExternVal
impl !Sync for ExternVal
impl Unpin for ExternVal
impl !UnwindSafe for ExternVal
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> 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>,