Enum wasmparser::ComponentDefinedType
source · pub enum ComponentDefinedType<'a> {
Primitive(PrimitiveValType),
Record(Box<[(&'a str, ComponentValType)]>),
Variant(Box<[VariantCase<'a>]>),
List(ComponentValType),
Tuple(Box<[ComponentValType]>),
Flags(Box<[&'a str]>),
Enum(Box<[&'a str]>),
Union(Box<[ComponentValType]>),
Option(ComponentValType),
Result {
ok: Option<ComponentValType>,
err: Option<ComponentValType>,
},
}
Expand description
Represents a defined type in a WebAssembly component.
Variants§
Primitive(PrimitiveValType)
The type is one of the primitive value types.
Record(Box<[(&'a str, ComponentValType)]>)
The type is a record with the given fields.
Variant(Box<[VariantCase<'a>]>)
The type is a variant with the given cases.
List(ComponentValType)
The type is a list of the given value type.
Tuple(Box<[ComponentValType]>)
The type is a tuple of the given value types.
Flags(Box<[&'a str]>)
The type is flags with the given names.
Enum(Box<[&'a str]>)
The type is an enum with the given tags.
Union(Box<[ComponentValType]>)
The type is a union of the given value types.
Option(ComponentValType)
The type is an option of the given value type.
Result
Fields
§
ok: Option<ComponentValType>
The type returned for success.
§
err: Option<ComponentValType>
The type returned for failure.
The type is a result type.
Trait Implementations§
source§impl<'a> Clone for ComponentDefinedType<'a>
impl<'a> Clone for ComponentDefinedType<'a>
source§fn clone(&self) -> ComponentDefinedType<'a>
fn clone(&self) -> ComponentDefinedType<'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 ComponentDefinedType<'a>
impl<'a> Debug for ComponentDefinedType<'a>
source§impl<'a> PartialEq<ComponentDefinedType<'a>> for ComponentDefinedType<'a>
impl<'a> PartialEq<ComponentDefinedType<'a>> for ComponentDefinedType<'a>
source§fn eq(&self, other: &ComponentDefinedType<'a>) -> bool
fn eq(&self, other: &ComponentDefinedType<'a>) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.impl<'a> Eq for ComponentDefinedType<'a>
impl<'a> StructuralEq for ComponentDefinedType<'a>
impl<'a> StructuralPartialEq for ComponentDefinedType<'a>
Auto Trait Implementations§
impl<'a> RefUnwindSafe for ComponentDefinedType<'a>
impl<'a> Send for ComponentDefinedType<'a>
impl<'a> Sync for ComponentDefinedType<'a>
impl<'a> Unpin for ComponentDefinedType<'a>
impl<'a> UnwindSafe for ComponentDefinedType<'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<Q, K> Equivalent<K> for Qwhere
Q: Eq + ?Sized,
K: Borrow<Q> + ?Sized,
impl<Q, K> Equivalent<K> for Qwhere Q: Eq + ?Sized, K: Borrow<Q> + ?Sized,
source§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key
and return true
if they are equal.