pub enum ComponentDefinedType {
Show 14 variants
Primitive(PrimitiveValType),
Record(RecordType),
Variant(VariantType),
List(ComponentValType),
Tuple(TupleType),
Flags(IndexSet<KebabString>),
Enum(IndexSet<KebabString>),
Option(ComponentValType),
Result {
ok: Option<ComponentValType>,
err: Option<ComponentValType>,
},
Own(AliasableResourceId),
Borrow(AliasableResourceId),
Future(Option<ComponentValType>),
Stream(ComponentValType),
ErrorContext,
}
Available on crate features
validate
and component-model
only.Expand description
Represents a component defined type.
Variants§
Primitive(PrimitiveValType)
The type is a primitive value type.
Record(RecordType)
The type is a record.
Variant(VariantType)
The type is a variant.
List(ComponentValType)
The type is a list.
Tuple(TupleType)
The type is a tuple.
Flags(IndexSet<KebabString>)
The type is a set of flags.
Enum(IndexSet<KebabString>)
The type is an enumeration.
Option(ComponentValType)
The type is an option
.
Result
The type is a result
.
Own(AliasableResourceId)
The type is an owned handle to the specified resource.
Borrow(AliasableResourceId)
The type is a borrowed handle to the specified resource.
Future(Option<ComponentValType>)
A future type with the specified payload type.
Stream(ComponentValType)
A stream type with the specified payload type.
ErrorContext
The error-context type.
Trait Implementations§
Source§impl Clone for ComponentDefinedType
impl Clone for ComponentDefinedType
Source§fn clone(&self) -> ComponentDefinedType
fn clone(&self) -> ComponentDefinedType
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 Debug for ComponentDefinedType
impl Debug for ComponentDefinedType
Source§impl TypeData for ComponentDefinedType
impl TypeData for ComponentDefinedType
Source§type Id = ComponentDefinedTypeId
type Id = ComponentDefinedTypeId
The identifier for this type data.
Auto Trait Implementations§
impl Freeze for ComponentDefinedType
impl RefUnwindSafe for ComponentDefinedType
impl Send for ComponentDefinedType
impl Sync for ComponentDefinedType
impl Unpin for ComponentDefinedType
impl UnwindSafe for ComponentDefinedType
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