Enum chalk_ir::TyKind[][src]

pub enum TyKind<I: Interner> {
Show variants 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),
}
Expand description

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.

pub fn compute_flags(&self, interner: &I) -> TypeFlags[src]

Compute type flags for a TyKind

Trait Implementations

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

fn cast_to(self, _interner: &<TyKind<I> as HasInterner>::Interner) -> TyKind<I>[src]

Cast a value to type T.

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

fn cast_to(self, _interner: &I) -> TyKind<I>[src]

Cast a value to type T.

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

fn clone(&self) -> TyKind<I>[src]

Returns a copy of the value. Read more

fn clone_from(&mut self, source: &Self)1.0.0[src]

Performs copy-assignment from source. Read more

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

fn fmt(&self, fmt: &mut Formatter<'_>) -> Result<(), Error>[src]

Formats the value using the given formatter. Read more

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]

fn hash<__H: Hasher>(&self, state: &mut __H)[src]

Feeds this value into the given Hasher. Read more

fn hash_slice<H>(data: &[Self], state: &mut H) where
    H: Hasher
1.3.0[src]

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

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

fn eq(&self, other: &TyKind<I>) -> bool[src]

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

fn ne(&self, other: &TyKind<I>) -> bool[src]

This method tests for !=.

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: Eq + Interner> Eq 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

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

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

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

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

Blanket Implementations

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

pub fn type_id(&self) -> TypeId[src]

Gets the TypeId of self. Read more

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

pub fn borrow(&self) -> &T[src]

Immutably borrows from an owned value. Read more

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

pub fn borrow_mut(&mut self) -> &mut T[src]

Mutably borrows from an owned value. Read more

impl<T> Cast for T[src]

fn cast<U>(self, interner: &U::Interner) -> U where
    Self: CastTo<U>,
    U: HasInterner
[src]

Cast a value to type U using CastTo.

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

pub fn from(t: T) -> T[src]

Performs the conversion.

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

pub fn into(self) -> U[src]

Performs the conversion.

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

type Owned = T

The resulting type after obtaining ownership.

pub fn to_owned(&self) -> T[src]

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

pub fn clone_into(&self, target: &mut T)[src]

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

recently added

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

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.

pub fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>[src]

Performs the conversion.

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.

pub fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>[src]

Performs the conversion.