pub enum AnalysedType {
Show 22 variants
Variant(TypeVariant),
Result(Box<TypeResult>),
Option(Box<TypeOption>),
Enum(TypeEnum),
Flags(TypeFlags),
Record(TypeRecord),
Tuple(TypeTuple),
List(Box<TypeList>),
Str(TypeStr),
Chr(TypeChr),
F64(TypeF64),
F32(TypeF32),
U64(TypeU64),
S64(TypeS64),
U32(TypeU32),
S32(TypeS32),
U16(TypeU16),
S16(TypeS16),
U8(TypeU8),
S8(TypeS8),
Bool(TypeBool),
Handle(TypeHandle),
}
Variants§
Variant(TypeVariant)
Result(Box<TypeResult>)
Option(Box<TypeOption>)
Enum(TypeEnum)
Flags(TypeFlags)
Record(TypeRecord)
Tuple(TypeTuple)
List(Box<TypeList>)
Str(TypeStr)
Chr(TypeChr)
F64(TypeF64)
F32(TypeF32)
U64(TypeU64)
S64(TypeS64)
U32(TypeU32)
S32(TypeS32)
U16(TypeU16)
S16(TypeS16)
U8(TypeU8)
S8(TypeS8)
Bool(TypeBool)
Handle(TypeHandle)
Trait Implementations§
source§impl Clone for AnalysedType
impl Clone for AnalysedType
source§fn clone(&self) -> AnalysedType
fn clone(&self) -> AnalysedType
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 AnalysedType
impl Debug for AnalysedType
source§impl<'de> Deserialize<'de> for AnalysedType
impl<'de> Deserialize<'de> for AnalysedType
source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
source§impl PartialEq for AnalysedType
impl PartialEq for AnalysedType
source§impl Serialize for AnalysedType
impl Serialize for AnalysedType
impl Eq for AnalysedType
impl StructuralPartialEq for AnalysedType
Auto Trait Implementations§
impl Freeze for AnalysedType
impl RefUnwindSafe for AnalysedType
impl Send for AnalysedType
impl Sync for AnalysedType
impl Unpin for AnalysedType
impl UnwindSafe for AnalysedType
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.