Enum wasmparser::types::Type

source ·
pub enum Type {
    Sub(SubType),
    Module(Box<ModuleType>),
    Instance(Box<InstanceType>),
    Component(Box<ComponentType>),
    ComponentInstance(Box<ComponentInstanceType>),
    ComponentFunc(ComponentFuncType),
    Defined(ComponentDefinedType),
    Resource(ResourceId),
}
Expand description

A unified type definition for validating WebAssembly modules and components.

Variants§

§

Sub(SubType)

The definition is for a sub type.

§

Module(Box<ModuleType>)

The definition is for a core module type.

This variant is only supported when parsing a component.

§

Instance(Box<InstanceType>)

The definition is for a core module instance type.

This variant is only supported when parsing a component.

§

Component(Box<ComponentType>)

The definition is for a component type.

This variant is only supported when parsing a component.

§

ComponentInstance(Box<ComponentInstanceType>)

The definition is for a component instance type.

This variant is only supported when parsing a component.

§

ComponentFunc(ComponentFuncType)

The definition is for a component function type.

This variant is only supported when parsing a component.

§

Defined(ComponentDefinedType)

The definition is for a component defined type.

This variant is only supported when parsing a component.

§

Resource(ResourceId)

This definition is for a resource type in the component model.

Each resource is identified by a unique identifier specified here.

Implementations§

source§

impl Type

source

pub fn unwrap_func(&self) -> &FuncType

Converts the type to a core function type.

source

pub fn unwrap_array(&self) -> &ArrayType

Converts the type to an array type.

source

pub fn unwrap_struct(&self) -> &StructType

Converts the type to a struct type.

source

pub fn unwrap_module(&self) -> &ModuleType

Converts the type to a core module type.

source

pub fn unwrap_instance(&self) -> &InstanceType

Converts the type to a core module instance type.

source

pub fn unwrap_component(&self) -> &ComponentType

Converts the type to a component type.

source

pub fn unwrap_component_instance(&self) -> &ComponentInstanceType

Converts the type to a component instance type.

source

pub fn unwrap_component_func(&self) -> &ComponentFuncType

Converts the type to a component function type.

source

pub fn unwrap_defined(&self) -> &ComponentDefinedType

Converts the type to a component defined type.

source

pub fn unwrap_resource(&self) -> ResourceId

Converts this type to a resource type, returning the corresponding id.

Trait Implementations§

source§

impl Debug for Type

source§

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

Formats the value using the given formatter. Read more

Auto Trait Implementations§

§

impl RefUnwindSafe for Type

§

impl Send for Type

§

impl Sync for Type

§

impl Unpin for Type

§

impl UnwindSafe for Type

Blanket Implementations§

source§

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

source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
source§

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

source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
source§

impl<T> BorrowMut<T> for Twhere 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 Twhere 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 Twhere 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 Twhere 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.