[][src]Enum chalk_ir::TyKind

pub enum TyKind<I: Interner> {
    Adt(AdtId<I>, Substitution<I>),
    AssociatedType(AssocTypeId<I>, Substitution<I>),
    Scalar(Scalar),
    Tuple(usizeSubstitution<I>),
    Array(Ty<I>, Const<I>),
    Slice(Ty<I>),
    Raw(MutabilityTy<I>),
    Ref(MutabilityLifetime<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(InferenceVarTyVariableKind),
}

Type data, which holds the actual type information.

Variants

Adt(AdtId<I>, Substitution<I>)

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

AssociatedType(AssocTypeId<I>, Substitution<I>)

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

Scalar(Scalar)

a scalar type like bool or u32

Tuple(usizeSubstitution<I>)

a tuple of the given arity

Array(Ty<I>, Const<I>)

an array type like [T; N]

Slice(Ty<I>)

a slice type like [T]

Raw(MutabilityTy<I>)

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

Ref(MutabilityLifetime<I>, Ty<I>)

a reference type like &T or &mut T

OpaqueType(OpaqueTyId<I>, Substitution<I>)

a placeholder for opaque types like impl Trait

FnDef(FnDefId<I>, Substitution<I>)

a function definition

Str

the string primitive type

Never

the never type !

Closure(ClosureId<I>, Substitution<I>)

A closure.

Generator(GeneratorId<I>, Substitution<I>)

A generator.

GeneratorWitness(GeneratorId<I>, Substitution<I>)

A generator witness.

Foreign(ForeignDefId<I>)

foreign types

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(PlaceholderIndex)

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

Dyn(DynTy<I>)

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.

Alias(AliasTy<I>)

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>
Function(FnPointer<I>)

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.

BoundVar(BoundVar)

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

Inference variable defined in the current inference context.

Implementations

impl<I: Interner> TyKind<I>[src]

pub fn debug<'a>(&'a self, interner: &'a I) -> TyKindDebug<'a, I>[src]

Show debug output for the application type.

impl<I: Interner> TyKind<I>[src]

pub fn intern(self, interner: &I) -> Ty<I>[src]

Casts the type data to a type.

Trait Implementations

impl<I: Interner> CastTo<TyKind<I>> for TyKind<I>[src]

impl<I: Interner> CastTo<TyKind<I>> for AliasTy<I>[src]

impl<I: Clone + Interner> Clone for TyKind<I>[src]

impl<I: Interner> Copy for TyKind<I> where
    I::InternedLifetime: Copy,
    I::InternedSubstitution: Copy,
    I::InternedVariableKinds: Copy,
    I::InternedQuantifiedWhereClauses: Copy,
    I::InternedType: Copy,
    I::InternedConst: Copy
[src]

impl<I: Interner> Debug for TyKind<I>[src]

impl<I: Eq + Interner> Eq for TyKind<I>[src]

impl<I: Interner> HasInterner for TyKind<I>[src]

type Interner = I

The interner associated with the type.

impl<I: Hash + Interner> Hash for TyKind<I>[src]

impl<I: PartialEq + Interner> PartialEq<TyKind<I>> for TyKind<I>[src]

impl<I: Interner> StructuralEq for TyKind<I>[src]

impl<I: Interner> StructuralPartialEq for TyKind<I>[src]

Auto Trait Implementations

impl<I> RefUnwindSafe for TyKind<I> where
    <I as Interner>::DefId: RefUnwindSafe,
    <I as Interner>::FnAbi: RefUnwindSafe,
    <I as Interner>::InternedAdtId: RefUnwindSafe,
    <I as Interner>::InternedConst: RefUnwindSafe,
    <I as Interner>::InternedLifetime: RefUnwindSafe,
    <I as Interner>::InternedQuantifiedWhereClauses: RefUnwindSafe,
    <I as Interner>::InternedSubstitution: RefUnwindSafe,
    <I as Interner>::InternedType: RefUnwindSafe,
    <I as Interner>::InternedVariableKinds: RefUnwindSafe
[src]

impl<I> Send for TyKind<I> where
    <I as Interner>::DefId: Send,
    <I as Interner>::FnAbi: Send,
    <I as Interner>::InternedAdtId: Send,
    <I as Interner>::InternedConst: Send,
    <I as Interner>::InternedLifetime: Send,
    <I as Interner>::InternedQuantifiedWhereClauses: Send,
    <I as Interner>::InternedSubstitution: Send,
    <I as Interner>::InternedType: Send,
    <I as Interner>::InternedVariableKinds: Send
[src]

impl<I> Sync for TyKind<I> where
    <I as Interner>::DefId: Sync,
    <I as Interner>::FnAbi: Sync,
    <I as Interner>::InternedAdtId: Sync,
    <I as Interner>::InternedConst: Sync,
    <I as Interner>::InternedLifetime: Sync,
    <I as Interner>::InternedQuantifiedWhereClauses: Sync,
    <I as Interner>::InternedSubstitution: Sync,
    <I as Interner>::InternedType: Sync,
    <I as Interner>::InternedVariableKinds: Sync
[src]

impl<I> Unpin for TyKind<I> where
    <I as Interner>::DefId: Unpin,
    <I as Interner>::FnAbi: Unpin,
    <I as Interner>::InternedAdtId: Unpin,
    <I as Interner>::InternedConst: Unpin,
    <I as Interner>::InternedLifetime: Unpin,
    <I as Interner>::InternedQuantifiedWhereClauses: Unpin,
    <I as Interner>::InternedSubstitution: Unpin,
    <I as Interner>::InternedType: Unpin,
    <I as Interner>::InternedVariableKinds: Unpin
[src]

impl<I> UnwindSafe for TyKind<I> where
    <I as Interner>::DefId: UnwindSafe,
    <I as Interner>::FnAbi: UnwindSafe,
    <I as Interner>::InternedAdtId: UnwindSafe,
    <I as Interner>::InternedConst: UnwindSafe,
    <I as Interner>::InternedLifetime: UnwindSafe,
    <I as Interner>::InternedQuantifiedWhereClauses: UnwindSafe,
    <I as Interner>::InternedSubstitution: UnwindSafe,
    <I as Interner>::InternedType: UnwindSafe,
    <I as Interner>::InternedVariableKinds: UnwindSafe
[src]

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> Cast for T[src]

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.