pub enum ComponentDefinedType<'a> {
Primitive(PrimitiveValType),
Record(Box<[(&'a str, ComponentValType)], Global>),
Variant(Box<[VariantCase<'a>], Global>),
List(ComponentValType),
Tuple(Box<[ComponentValType], Global>),
Flags(Box<[&'a str], Global>),
Enum(Box<[&'a str], Global>),
Union(Box<[ComponentValType], Global>),
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)], Global>)
The type is a record with the given fields.
Variant(Box<[VariantCase<'a>], Global>)
The type is a variant with the given cases.
List(ComponentValType)
The type is a list of the given value type.
Tuple(Box<[ComponentValType], Global>)
The type is a tuple of the given value types.
Flags(Box<[&'a str], Global>)
The type is flags with the given names.
Enum(Box<[&'a str], Global>)
The type is an enum with the given tags.
Union(Box<[ComponentValType], Global>)
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
sourceimpl<'a> Clone for ComponentDefinedType<'a>
impl<'a> Clone for ComponentDefinedType<'a>
sourcefn clone(&self) -> ComponentDefinedType<'a>
fn clone(&self) -> ComponentDefinedType<'a>
Returns a copy of the value. Read more
1.0.0 · sourcefn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from source
. Read more
sourceimpl<'a> Debug for ComponentDefinedType<'a>
impl<'a> Debug for ComponentDefinedType<'a>
sourceimpl<'a> PartialEq<ComponentDefinedType<'a>> for ComponentDefinedType<'a>
impl<'a> PartialEq<ComponentDefinedType<'a>> for ComponentDefinedType<'a>
sourcefn 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 ==
. Read more
sourcefn ne(&self, other: &ComponentDefinedType<'a>) -> bool
fn ne(&self, other: &ComponentDefinedType<'a>) -> bool
This method tests for !=
.
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
sourceimpl<T> BorrowMut<T> for T where
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
sourceimpl<Q, K> Equivalent<K> for Q where
Q: Eq + ?Sized,
K: Borrow<Q> + ?Sized,
impl<Q, K> Equivalent<K> for Q where
Q: Eq + ?Sized,
K: Borrow<Q> + ?Sized,
sourcefn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to key
and return true
if they are equal.
sourceimpl<T> ToOwned for T where
T: Clone,
impl<T> ToOwned for T where
T: Clone,
type Owned = T
type Owned = T
The resulting type after obtaining ownership.
sourcefn clone_into(&self, target: &mut T)
fn clone_into(&self, target: &mut T)
toowned_clone_into
)Uses borrowed data to replace owned data, usually by cloning. Read more