Enum rustc_hir::hir::TyKind[][src]

pub enum TyKind<'hir> {
Show 13 variants Slice(&'hir Ty<'hir>), Array(&'hir Ty<'hir>, AnonConst), Ptr(MutTy<'hir>), Rptr(LifetimeMutTy<'hir>), BareFn(&'hir BareFnTy<'hir>), Never, Tup(&'hir [Ty<'hir>]), Path(QPath<'hir>), OpaqueDef(ItemId&'hir [GenericArg<'hir>]), TraitObject(&'hir [PolyTraitRef<'hir>]LifetimeTraitObjectSyntax), Typeof(AnonConst), Infer, Err,
}
Expand description

The various kinds of types recognized by the compiler.

Variants

Slice(&'hir Ty<'hir>)

A variable length slice (i.e., [T]).

Tuple Fields of Slice

0: &'hir Ty<'hir>
Array(&'hir Ty<'hir>, AnonConst)

A fixed length array (i.e., [T; n]).

Tuple Fields of Array

0: &'hir Ty<'hir>1: AnonConst
Ptr(MutTy<'hir>)

A raw pointer (i.e., *const T or *mut T).

Tuple Fields of Ptr

0: MutTy<'hir>
Rptr(LifetimeMutTy<'hir>)

A reference (i.e., &'a T or &'a mut T).

Tuple Fields of Rptr

0: Lifetime1: MutTy<'hir>
BareFn(&'hir BareFnTy<'hir>)

A bare function (e.g., fn(usize) -> bool).

Tuple Fields of BareFn

0: &'hir BareFnTy<'hir>
Never

The never type (!).

Tup(&'hir [Ty<'hir>])

A tuple ((A, B, C, D, ...)).

Tuple Fields of Tup

0: &'hir [Ty<'hir>]
Path(QPath<'hir>)

A path to a type definition (module::module::...::Type), or an associated type (e.g., <Vec<T> as Trait>::Type or <T>::Target).

Type parameters may be stored in each PathSegment.

Tuple Fields of Path

0: QPath<'hir>
OpaqueDef(ItemId&'hir [GenericArg<'hir>])

An opaque type definition itself. This is only used for impl Trait.

The generic argument list contains the lifetimes (and in the future possibly parameters) that are actually bound on the impl Trait.

Tuple Fields of OpaqueDef

0: ItemId1: &'hir [GenericArg<'hir>]
TraitObject(&'hir [PolyTraitRef<'hir>]LifetimeTraitObjectSyntax)

A trait object type Bound1 + Bound2 + Bound3 where Bound is a trait or a lifetime.

Tuple Fields of TraitObject

0: &'hir [PolyTraitRef<'hir>]1: Lifetime2: TraitObjectSyntax
Typeof(AnonConst)

Unused for now.

Tuple Fields of Typeof

0: AnonConst
Infer

TyKind::Infer means the type should be inferred instead of it having been specified. This can appear anywhere in a type.

Err

Placeholder for a type that has failed to be defined.

Trait Implementations

Formats the value using the given formatter. Read more

Auto Trait Implementations

Blanket Implementations

Gets the TypeId of self. Read more

Immutably borrows from an owned value. Read more

Mutably borrows from an owned value. Read more

Performs the conversion.

Performs the conversion.

The type returned in the event of a conversion error.

Performs the conversion.

The type returned in the event of a conversion error.

Performs the conversion.

Layout

Note: Most layout information is completely unstable and may even differ between compilations. The only exception is types with certain repr(...) attributes. Please see the Rust Reference’s “Type Layout” chapter for details on type layout guarantees.

Size: 56 bytes

Size for each variant: