#[non_exhaustive]pub enum TypeKind {
Tuple(Tuple),
Leaf,
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.
Leaf
🔬This is a nightly-only experimental API. (
type_info #146922)Primitives FIXME(#146922): disambiguate further
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