Enum wasmparser::ComponentType
source · pub enum ComponentType<'a> {
Defined(ComponentDefinedType<'a>),
Func(ComponentFuncType<'a>),
Component(Box<[ComponentTypeDeclaration<'a>]>),
Instance(Box<[InstanceTypeDeclaration<'a>]>),
Resource {
rep: ValType,
dtor: Option<u32>,
},
}
Expand description
Represents a type in a WebAssembly component.
Variants§
Defined(ComponentDefinedType<'a>)
The type is a component defined type.
Func(ComponentFuncType<'a>)
The type is a function type.
Component(Box<[ComponentTypeDeclaration<'a>]>)
The type is a component type.
Instance(Box<[InstanceTypeDeclaration<'a>]>)
The type is an instance type.
Resource
The type is a fresh new resource type.
Trait Implementations§
source§impl<'a> Clone for ComponentType<'a>
impl<'a> Clone for ComponentType<'a>
source§fn clone(&self) -> ComponentType<'a>
fn clone(&self) -> ComponentType<'a>
Returns a copy of the value. Read more
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moresource§impl<'a> Debug for ComponentType<'a>
impl<'a> Debug for ComponentType<'a>
source§impl<'a> FromReader<'a> for ComponentType<'a>
impl<'a> FromReader<'a> for ComponentType<'a>
source§fn from_reader(reader: &mut BinaryReader<'a>) -> Result<Self>
fn from_reader(reader: &mut BinaryReader<'a>) -> Result<Self>
Attempts to read
Self
from the provided binary reader, returning an
error if it is unable to do so.source§impl<'a> PartialEq for ComponentType<'a>
impl<'a> PartialEq for ComponentType<'a>
impl<'a> Eq for ComponentType<'a>
impl<'a> StructuralPartialEq for ComponentType<'a>
Auto Trait Implementations§
impl<'a> Freeze for ComponentType<'a>
impl<'a> RefUnwindSafe for ComponentType<'a>
impl<'a> Send for ComponentType<'a>
impl<'a> Sync for ComponentType<'a>
impl<'a> Unpin for ComponentType<'a>
impl<'a> UnwindSafe for ComponentType<'a>
Blanket Implementations§
source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
source§unsafe fn clone_to_uninit(&self, dst: *mut T)
unsafe fn clone_to_uninit(&self, dst: *mut T)
🔬This is a nightly-only experimental API. (
clone_to_uninit
)source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
source§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key
and return true
if they are equal.