Enum wit_parser::TypeDefKind
source · pub enum TypeDefKind {
}
Variants§
Record(Record)
Resource
Handle(Handle)
Flags(Flags)
Tuple(Tuple)
Variant(Variant)
Enum(Enum)
Option(Type)
Result(Result_)
Union(Union)
List(Type)
Future(Option<Type>)
Stream(Stream)
Type(Type)
Unknown
This represents a type of unknown structure imported from a foreign interface.
This variant is only used during the creation of UnresolvedPackage
but
by the time a Resolve
is created then this will not exist.
Implementations§
Trait Implementations§
source§impl Clone for TypeDefKind
impl Clone for TypeDefKind
source§fn clone(&self) -> TypeDefKind
fn clone(&self) -> TypeDefKind
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 TypeDefKind
impl Debug for TypeDefKind
source§impl PartialEq<TypeDefKind> for TypeDefKind
impl PartialEq<TypeDefKind> for TypeDefKind
source§fn eq(&self, other: &TypeDefKind) -> bool
fn eq(&self, other: &TypeDefKind) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.impl StructuralPartialEq for TypeDefKind
Auto Trait Implementations§
impl RefUnwindSafe for TypeDefKind
impl Send for TypeDefKind
impl Sync for TypeDefKind
impl Unpin for TypeDefKind
impl UnwindSafe for TypeDefKind
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