#[non_exhaustive]pub enum TypeKind {
}🔬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.
Slice(Slice)
🔬This is a nightly-only experimental API. (
type_info #146922)Slices.
DynTrait(DynTrait)
🔬This is a nightly-only experimental API. (
type_info #146922)Dynamic Traits.
Struct(Struct)
🔬This is a nightly-only experimental API. (
type_info #146922)Structs.
Enum(Enum)
🔬This is a nightly-only experimental API. (
type_info #146922)Enums.
Union(Union)
🔬This is a nightly-only experimental API. (
type_info #146922)Unions.
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.
Pointer(Pointer)
🔬This is a nightly-only experimental API. (
type_info #146922)Pointers.
FnPtr(FnPtr)
🔬This is a nightly-only experimental API. (
type_info #146922)Function pointers.
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 UnsafeUnpin 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
Source§impl<T> SizedTypeProperties for T
impl<T> SizedTypeProperties for T
Source§#[doc(hidden)]const SIZE: usize = _
#[doc(hidden)]const SIZE: usize = _
🔬This is a nightly-only experimental API. (
sized_type_properties)Source§#[doc(hidden)]const ALIGN: usize = _
#[doc(hidden)]const ALIGN: usize = _
🔬This is a nightly-only experimental API. (
sized_type_properties)Source§#[doc(hidden)]const ALIGNMENT: Alignment = _
#[doc(hidden)]const ALIGNMENT: Alignment = _
🔬This is a nightly-only experimental API. (
ptr_alignment_type #102070)Source§#[doc(hidden)]const IS_ZST: bool = _
#[doc(hidden)]const IS_ZST: bool = _
🔬This is a nightly-only experimental API. (
sized_type_properties)Source§#[doc(hidden)]const LAYOUT: Layout = _
#[doc(hidden)]const LAYOUT: Layout = _
🔬This is a nightly-only experimental API. (
sized_type_properties)Source§#[doc(hidden)]const MAX_SLICE_LEN: usize = _
#[doc(hidden)]const MAX_SLICE_LEN: usize = _
🔬This is a nightly-only experimental API. (
sized_type_properties)The largest safe length for a
[Self]. Read more