pub struct Bindgen {
    pub resolve: Resolve,
    pub world: WorldId,
    pub metadata: ModuleMetadata,
    pub producers: Option<Producers>,
}
Expand description

The result of decoding binding information from a WebAssembly binary.

This structure is returned by decode and represents the interface of a WebAssembly binary.

Fields§

§resolve: Resolve

Interface and type information for this binary.

§world: WorldId

The world that was bound.

§metadata: ModuleMetadata

Metadata about this specific module that was bound.

§producers: Option<Producers>

Producer information about tools used to produce this specific module.

Implementations§

source§

impl Bindgen

source

pub fn merge(&mut self, other: Bindgen) -> Result<WorldId>

Merges another BindgenMetadata into this one.

This operation is intended to be akin to “merging worlds” when the abstraction level for that is what we’re working at here. For now the merge operation only succeeds if the two metadata descriptions are entirely disjoint.

Note that at this time there’s no support for changing string encodings between metadata.

Trait Implementations§

source§

impl Default for Bindgen

source§

fn default() -> Bindgen

Returns the “default value” for a type. Read more

Auto Trait Implementations§

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.

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.