Enum wasmtime_environ::wasm::Alias[][src]

pub enum Alias<'a> {
    OuterModule {
        relative_depth: u32,
        index: ModuleIndex,
    },
    OuterType {
        relative_depth: u32,
        index: TypeIndex,
    },
    InstanceExport {
        instance: InstanceIndex,
        export: &'a str,
    },
}
Expand description

An entry in the alias section of a wasm module (from the module linking proposal)

Variants

OuterModule

An outer module’s module is being aliased into our own index space.

Show fields

Fields of OuterModule

relative_depth: u32

The number of modules above us that we’re referencing.

index: ModuleIndex

The module index in the outer module’s index space we’re referencing.

OuterType

An outer module’s type is being aliased into our own index space

Note that the index here is in the outer module’s index space, not our own.

Show fields

Fields of OuterType

relative_depth: u32

The number of modules above us that we’re referencing.

index: TypeIndex

The type index in the outer module’s index space we’re referencing.

InstanceExport

A previously created instance is having one of its exports aliased into our index space.

Show fields

Fields of InstanceExport

instance: InstanceIndex

The index we’re aliasing.

export: &'a str

The nth export that we’re inserting into our own index space locally.

Auto Trait Implementations

impl<'a> RefUnwindSafe for Alias<'a>

impl<'a> Send for Alias<'a>

impl<'a> Sync for Alias<'a>

impl<'a> Unpin for Alias<'a>

impl<'a> UnwindSafe for Alias<'a>

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

pub fn type_id(&self) -> TypeId[src]

Gets the TypeId of self. Read more

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

pub fn borrow(&self) -> &T[src]

Immutably borrows from an owned value. Read more

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

pub fn borrow_mut(&mut self) -> &mut T[src]

Mutably borrows from an owned value. Read more

impl<T> From<T> for T[src]

pub fn from(t: T) -> T[src]

Performs the conversion.

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

pub fn into(self) -> U[src]

Performs the conversion.

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

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]

Performs the conversion.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

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

The type returned in the event of a conversion error.

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

Performs the conversion.