#[non_exhaustive]pub enum TypeKind {
Tuple(Tuple),
Array(Array),
Bool(Bool),
Char(Char),
Int(Int),
Float(Float),
Str(Str),
Reference(Reference),
Other,
}🔬This is a nightly-only experimental API. (
type_info #146922)Expand description
Compile-time type information.
Variants (Non-exhaustive)§
This enum is marked as non-exhaustive
Non-exhaustive enums could have additional variants added in future. Therefore, when matching against variants of non-exhaustive enums, an extra wildcard arm must be added to account for any future variants.
Tuple(Tuple)
🔬This is a nightly-only experimental API. (
type_info #146922)Tuples.
Array(Array)
🔬This is a nightly-only experimental API. (
type_info #146922)Arrays.
Bool(Bool)
🔬This is a nightly-only experimental API. (
type_info #146922)Primitive boolean type.
Char(Char)
🔬This is a nightly-only experimental API. (
type_info #146922)Primitive character type.
Int(Int)
🔬This is a nightly-only experimental API. (
type_info #146922)Primitive signed and unsigned integer type.
Float(Float)
🔬This is a nightly-only experimental API. (
type_info #146922)Primitive floating-point type.
Str(Str)
🔬This is a nightly-only experimental API. (
type_info #146922)String slice type.
Reference(Reference)
🔬This is a nightly-only experimental API. (
type_info #146922)References.
Other
🔬This is a nightly-only experimental API. (
type_info #146922)FIXME(#146922): add all the common types
Trait Implementations§
Auto Trait Implementations§
impl Freeze for TypeKind
impl RefUnwindSafe for TypeKind
impl Send for TypeKind
impl Sync for TypeKind
impl Unpin for TypeKind
impl UnwindSafe for TypeKind
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