Enum wasmparser::types::Type

source ·
pub enum Type {
    Func(FuncType),
    Module(ModuleType),
    Instance(InstanceType),
    Component(ComponentType),
    ComponentInstance(ComponentInstanceType),
    ComponentFunc(ComponentFuncType),
    Defined(ComponentDefinedType),
}
Expand description

A unified type definition for validating WebAssembly modules and components.

Variants§

§

Func(FuncType)

The definition is for a core function type.

§

Module(ModuleType)

The definition is for a core module type.

This variant is only supported when parsing a component.

§

Instance(InstanceType)

The definition is for a core module instance type.

This variant is only supported when parsing a component.

§

Component(ComponentType)

The definition is for a component type.

This variant is only supported when parsing a component.

§

ComponentInstance(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.

Implementations§

source§

impl Type

source

pub fn as_func_type(&self) -> Option<&FuncType>

Converts the type to a core function type.

source

pub fn as_module_type(&self) -> Option<&ModuleType>

Converts the type to a core module type.

source

pub fn as_instance_type(&self) -> Option<&InstanceType>

Converts the type to a core module instance type.

source

pub fn as_component_type(&self) -> Option<&ComponentType>

Converts the type to a component type.

source

pub fn as_component_instance_type(&self) -> Option<&ComponentInstanceType>

Converts the type to a component instance type.

source

pub fn as_component_func_type(&self) -> Option<&ComponentFuncType>

Converts the type to a component function type.

source

pub fn as_defined_type(&self) -> Option<&ComponentDefinedType>

Converts the type to a component defined type.

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,

const: unstable · source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
source§

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

const: unstable · source§

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

Mutably borrows from an owned value. Read more
source§

impl<T> From<T> for T

const: unstable · source§

fn from(t: T) -> T

Returns the argument unchanged.

source§

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

const: unstable · 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.
const: unstable · 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.
const: unstable · source§

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

Performs the conversion.