[][src]Struct chalk_rust_ir::AssociatedTyDatum

pub struct AssociatedTyDatum<I: Interner> {
    pub trait_id: TraitId<I>,
    pub id: AssocTypeId<I>,
    pub name: I::Identifier,
    pub binders: Binders<AssociatedTyDatumBound<I>>,
}

Represents an associated type declaration found inside of a trait:

trait Foo<P1..Pn> { // P0 is Self
    type Bar<Pn..Pm>: [bounds]
    where
        [where_clauses];
}

The meaning of each of these parts:

  • The parameters P0...Pm are all in scope for this associated type.
  • The bounds bounds are things that the impl must prove to be true.
  • The where clauses where_clauses are things that the impl can assume to be true (but which projectors must prove).

Fields

trait_id: TraitId<I>

The trait this associated type is defined in.

id: AssocTypeId<I>

The ID of this associated type

name: I::Identifier

Name of this associated type.

binders: Binders<AssociatedTyDatumBound<I>>

These binders represent the P0...Pm variables. The binders are in the order [Pn..Pm; P0..Pn]. That is, the variables from Bar come first (corresponding to the de bruijn concept that "inner" binders are lower indices, although within a given binder we do not have an ordering).

Methods

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

pub fn bounds_on_self(&self, interner: &I) -> Vec<QuantifiedWhereClause<I>>[src]

Returns the associated ty's bounds applied to the projection type, e.g.:

Implemented(<?0 as Foo>::Item<?1>: Sized)

these quantified where clauses are in the scope of the binders field.

Trait Implementations

impl<I: Clone + Interner> Clone for AssociatedTyDatum<I> where
    I::Identifier: Clone
[src]

impl<I: Debug + Interner> Debug for AssociatedTyDatum<I> where
    I::Identifier: Debug
[src]

impl<I: Eq + Interner> Eq for AssociatedTyDatum<I> where
    I::Identifier: Eq
[src]

impl<I: Hash + Interner> Hash for AssociatedTyDatum<I> where
    I::Identifier: Hash
[src]

impl<I: PartialEq + Interner> PartialEq<AssociatedTyDatum<I>> for AssociatedTyDatum<I> where
    I::Identifier: PartialEq
[src]

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

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

Auto Trait Implementations

impl<I> RefUnwindSafe for AssociatedTyDatum<I> where
    <I as Interner>::DefId: RefUnwindSafe,
    <I as Interner>::Identifier: RefUnwindSafe,
    <I as Interner>::InternedParameter: RefUnwindSafe,
    <I as Interner>::InternedParameterKinds: RefUnwindSafe,
    <I as Interner>::InternedSubstitution: RefUnwindSafe,
    <I as Interner>::InternedType: RefUnwindSafe

impl<I> Send for AssociatedTyDatum<I> where
    <I as Interner>::DefId: Send,
    <I as Interner>::Identifier: Send,
    <I as Interner>::InternedParameter: Send,
    <I as Interner>::InternedParameterKinds: Send,
    <I as Interner>::InternedSubstitution: Send,
    <I as Interner>::InternedType: Send

impl<I> Sync for AssociatedTyDatum<I> where
    <I as Interner>::DefId: Sync,
    <I as Interner>::Identifier: Sync,
    <I as Interner>::InternedParameter: Sync,
    <I as Interner>::InternedParameterKinds: Sync,
    <I as Interner>::InternedSubstitution: Sync,
    <I as Interner>::InternedType: Sync

impl<I> Unpin for AssociatedTyDatum<I> where
    <I as Interner>::DefId: Unpin,
    <I as Interner>::Identifier: Unpin,
    <I as Interner>::InternedParameter: Unpin,
    <I as Interner>::InternedParameterKinds: Unpin,
    <I as Interner>::InternedSubstitution: Unpin,
    <I as Interner>::InternedType: Unpin

impl<I> UnwindSafe for AssociatedTyDatum<I> where
    <I as Interner>::DefId: UnwindSafe,
    <I as Interner>::Identifier: UnwindSafe,
    <I as Interner>::InternedParameter: UnwindSafe,
    <I as Interner>::InternedParameterKinds: UnwindSafe,
    <I as Interner>::InternedSubstitution: UnwindSafe,
    <I as Interner>::InternedType: UnwindSafe

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.