Enum wasm_metadata::Metadata

source ·
pub enum Metadata {
    Component {
        name: Option<String>,
        producers: Option<Producers>,
        registry_metadata: Option<RegistryMetadata>,
        children: Vec<Box<Metadata>>,
        range: Range<usize>,
    },
    Module {
        name: Option<String>,
        producers: Option<Producers>,
        registry_metadata: Option<RegistryMetadata>,
        range: Range<usize>,
    },
}
Expand description

A tree of the metadata found in a WebAssembly binary.

Variants§

§

Component

Metadata found inside a WebAssembly component.

Fields

§name: Option<String>

The component name, if any. Found in the component-name section.

§producers: Option<Producers>

The component’s producers section, if any.

§registry_metadata: Option<RegistryMetadata>

The component’s registry metadata section, if any.

§children: Vec<Box<Metadata>>

All child modules and components inside the component.

§range: Range<usize>

Byte range of the module in the parent binary

§

Module

Metadata found inside a WebAssembly module.

Fields

§name: Option<String>

The module name, if any. Found in the name section.

§producers: Option<Producers>

The module’s producers section, if any.

§registry_metadata: Option<RegistryMetadata>

The module’s registry metadata section, if any.

§range: Range<usize>

Byte range of the module in the parent binary

Implementations§

source§

impl Metadata

source

pub fn from_binary(input: &[u8]) -> Result<Self>

Parse metadata from a WebAssembly binary. Supports both core WebAssembly modules, and WebAssembly components.

Trait Implementations§

source§

impl Debug for Metadata

source§

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

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

impl Display for Metadata

source§

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

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

impl Serialize for Metadata

source§

fn serialize<__S>(&self, __serializer: __S) -> Result<__S::Ok, __S::Error>
where __S: Serializer,

Serialize this value into the given Serde serializer. 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> ToString for T
where T: Display + ?Sized,

source§

default fn to_string(&self) -> String

Converts the given value to a String. 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.