Enum wasmtime::Extern

source ·
pub enum Extern {
    Func(Func),
    Global(Global),
    Table(Table),
    Memory(Memory),
    SharedMemory(SharedMemory),
}
Available on crate feature runtime only.
Expand description

An external item to a WebAssembly module, or a list of what can possibly be exported from a wasm module.

This is both returned from Instance::exports as well as required by Instance::new. In other words, this is the type of extracted values from an instantiated module, and it’s also used to provide imported values when instantiating a module.

Variants§

§

Func(Func)

A WebAssembly func which can be called.

§

Global(Global)

A WebAssembly global which acts like a Cell<T> of sorts, supporting get and set operations.

§

Table(Table)

A WebAssembly table which is an array of Val reference types.

§

Memory(Memory)

A WebAssembly linear memory.

§

SharedMemory(SharedMemory)

A WebAssembly shared memory; these are handled separately from Memory.

Implementations§

source§

impl Extern

source

pub fn into_func(self) -> Option<Func>

Returns the underlying Func, if this external is a function.

Returns None if this is not a function.

source

pub fn into_global(self) -> Option<Global>

Returns the underlying Global, if this external is a global.

Returns None if this is not a global.

source

pub fn into_table(self) -> Option<Table>

Returns the underlying Table, if this external is a table.

Returns None if this is not a table.

source

pub fn into_memory(self) -> Option<Memory>

Returns the underlying Memory, if this external is a memory.

Returns None if this is not a memory.

source

pub fn into_shared_memory(self) -> Option<SharedMemory>

Returns the underlying SharedMemory, if this external is a shared memory.

Returns None if this is not a shared memory.

source

pub fn ty(&self, store: impl AsContext) -> ExternType

Returns the type associated with this Extern.

The store argument provided must own this Extern and is used to look up type information.

§Panics

Panics if this item does not belong to the store provided.

Trait Implementations§

source§

impl Clone for Extern

source§

fn clone(&self) -> Extern

Returns a copy of the value. Read more
1.0.0 · source§

fn clone_from(&mut self, source: &Self)

Performs copy-assignment from source. Read more
source§

impl Debug for Extern

source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
source§

impl From<Func> for Extern

source§

fn from(r: Func) -> Self

Converts to this type from the input type.
source§

impl From<Global> for Extern

source§

fn from(r: Global) -> Self

Converts to this type from the input type.
source§

impl From<Memory> for Extern

source§

fn from(r: Memory) -> Self

Converts to this type from the input type.
source§

impl From<SharedMemory> for Extern

source§

fn from(r: SharedMemory) -> Self

Converts to this type from the input type.
source§

impl From<Table> for Extern

source§

fn from(r: Table) -> Self

Converts to this type from the input type.

Auto Trait Implementations§

§

impl Freeze for Extern

§

impl !RefUnwindSafe for Extern

§

impl Send for Extern

§

impl Sync for Extern

§

impl Unpin for Extern

§

impl !UnwindSafe for Extern

Blanket Implementations§

source§

impl<T> Any for T
where T: 'static + ?Sized,

source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
source§

impl<T> Borrow<T> for T
where T: ?Sized,

source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
source§

impl<T> BorrowMut<T> for T
where T: ?Sized,

source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
source§

impl<T> From<T> for T

source§

fn from(t: T) -> T

Returns the argument unchanged.

source§

impl<T, U> Into<U> for T
where U: From<T>,

source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

§

impl<T> Pointable for T

§

const ALIGN: usize = _

The alignment of pointer.
§

type Init = T

The type for initializers.
§

unsafe fn init(init: <T as Pointable>::Init) -> usize

Initializes a with the given initializer. Read more
§

unsafe fn deref<'a>(ptr: usize) -> &'a T

Dereferences the given pointer. Read more
§

unsafe fn deref_mut<'a>(ptr: usize) -> &'a mut T

Mutably dereferences the given pointer. Read more
§

unsafe fn drop(ptr: usize)

Drops the object pointed to by the given pointer. Read more
source§

impl<T> Same for T

§

type Output = T

Should always be Self
source§

impl<T> ToOwned for T
where T: Clone,

§

type Owned = T

The resulting type after obtaining ownership.
source§

fn to_owned(&self) -> T

Creates owned data from borrowed data, usually by cloning. Read more
source§

fn clone_into(&self, target: &mut T)

Uses borrowed data to replace owned data, usually by cloning. Read more
source§

impl<T, U> TryFrom<U> for T
where U: Into<T>,

§

type Error = Infallible

The type returned in the event of a conversion error.
source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
source§

impl<T, U> TryInto<U> for T
where U: TryFrom<T>,

§

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.
source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.