Enum chalk_ir::TyKind[][src]

pub enum TyKind<I: Interner> {
Show 23 variants Adt(AdtId<I>, Substitution<I>), AssociatedType(AssocTypeId<I>, Substitution<I>), Scalar(Scalar), Tuple(usize, Substitution<I>), Array(Ty<I>, Const<I>), Slice(Ty<I>), Raw(Mutability, Ty<I>), Ref(Mutability, Lifetime<I>, Ty<I>), OpaqueType(OpaqueTyId<I>, Substitution<I>), FnDef(FnDefId<I>, Substitution<I>), Str, Never, Closure(ClosureId<I>, Substitution<I>), Generator(GeneratorId<I>, Substitution<I>), GeneratorWitness(GeneratorId<I>, Substitution<I>), Foreign(ForeignDefId<I>), Error, Placeholder(PlaceholderIndex), Dyn(DynTy<I>), Alias(AliasTy<I>), Function(FnPointer<I>), BoundVar(BoundVar), InferenceVar(InferenceVar, TyVariableKind),
}
Expand description

Type data, which holds the actual type information.

Variants

Adt

Abstract data types, i.e., structs, unions, or enumerations. For example, a type like Vec<T>.

Tuple Fields of Adt

0: AdtId<I>1: Substitution<I>
AssociatedType

an associated type like Iterator::Item; see AssociatedType for details

Tuple Fields of AssociatedType

0: AssocTypeId<I>1: Substitution<I>
Scalar

a scalar type like bool or u32

Tuple Fields of Scalar

0: Scalar
Tuple

a tuple of the given arity

Tuple Fields of Tuple

0: usize1: Substitution<I>
Array

an array type like [T; N]

Tuple Fields of Array

0: Ty<I>1: Const<I>
Slice

a slice type like [T]

Tuple Fields of Slice

0: Ty<I>
Raw

a raw pointer type like *const T or *mut T

Tuple Fields of Raw

0: Mutability1: Ty<I>
Ref

a reference type like &T or &mut T

Tuple Fields of Ref

0: Mutability1: Lifetime<I>2: Ty<I>
OpaqueType

a placeholder for opaque types like impl Trait

Tuple Fields of OpaqueType

0: OpaqueTyId<I>1: Substitution<I>
FnDef

a function definition

Tuple Fields of FnDef

0: FnDefId<I>1: Substitution<I>
Str

the string primitive type

Never

the never type !

Closure

A closure.

Tuple Fields of Closure

0: ClosureId<I>1: Substitution<I>
Generator

A generator.

Tuple Fields of Generator

0: GeneratorId<I>1: Substitution<I>
GeneratorWitness

A generator witness.

Tuple Fields of GeneratorWitness

0: GeneratorId<I>1: Substitution<I>
Foreign

foreign types

Tuple Fields of Foreign

0: ForeignDefId<I>
Error

This can be used to represent an error, e.g. during name resolution of a type. Chalk itself will not produce this, just pass it through when given.

Placeholder

instantiated from a universally quantified type, e.g., from forall<T> { .. }. Stands in as a representative of “some unknown type”.

Tuple Fields of Placeholder

0: PlaceholderIndex
Dyn

A “dyn” type is a trait object type created via the “dyn Trait” syntax. In the chalk parser, the traits that the object represents is parsed as a QuantifiedInlineBound, and is then changed to a list of where clauses during lowering.

See the Opaque variant for a discussion about the use of binders here.

Tuple Fields of Dyn

0: DynTy<I>
Alias

An “alias” type represents some form of type alias, such as:

  • An associated type projection like <T as Iterator>::Item
  • impl Trait types
  • Named type aliases like type Foo<X> = Vec<X>

Tuple Fields of Alias

0: AliasTy<I>
Function

A function type such as for<'a> fn(&'a u32). Note that “higher-ranked” types (starting with for<>) are either function types or dyn types, and do not appear otherwise in Rust surface syntax.

Tuple Fields of Function

0: FnPointer<I>
BoundVar

References the binding at the given depth. The index is a [de Bruijn index], so it counts back through the in-scope binders.

Tuple Fields of BoundVar

0: BoundVar
InferenceVar

Inference variable defined in the current inference context.

Tuple Fields of InferenceVar

0: InferenceVar1: TyVariableKind

Implementations

Show debug output for the application type.

Casts the type data to a type.

Compute type flags for a TyKind

Trait Implementations

Cast a value to type T.

Cast a value to type T.

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

Formats the value using the given formatter. Read more

The interner associated with the type.

Feeds this value into the given Hasher. Read more

Feeds a slice of this type into the given Hasher. Read more

This method tests for self and other values to be equal, and is used by ==. Read more

This method tests for !=.

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

Cast a value to type U using CastTo.

Performs the conversion.

Performs the conversion.

The resulting type after obtaining ownership.

Creates owned data from borrowed data, usually by cloning. Read more

🔬 This is a nightly-only experimental API. (toowned_clone_into)

recently added

Uses borrowed data to replace owned data, usually by cloning. Read more

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.