pub struct AssociatedTyValue<I: Interner> {
    pub impl_id: ImplId<I>,
    pub associated_ty_id: AssocTypeId<I>,
    pub value: Binders<AssociatedTyValueBound<I>>,
}
Expand description

Represents the value of an associated type that is assigned from within some impl.

impl Iterator for Foo {
    type Item = XXX; // <-- represents this line!
}

Fields

impl_id: ImplId<I>

Impl in which this associated type value is found. You might need to look at this to find the generic parameters defined on the impl, for example.

impl Iterator for Foo { // <-- refers to this impl
    type Item = XXX; // <-- (where this is self)
}
associated_ty_id: AssocTypeId<I>

Associated type being defined.

impl Iterator for Foo {
    type Item = XXX; // <-- (where this is self)
}
...
trait Iterator {
    type Item; // <-- refers to this declaration here!
}
value: Binders<AssociatedTyValueBound<I>>

Additional binders declared on the associated type itself, beyond those from the impl. This would be empty for normal associated types, but non-empty for generic associated types.

impl<T> Iterable for Vec<T> {
    type Iter<'a> = vec::Iter<'a, T>;
          // ^^^^ refers to these generics here
}

Trait Implementations

Returns a copy of the value. Read more
Performs copy-assignment from source. Read more
Formats the value using the given formatter. Read more
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 !=. The default implementation is almost always sufficient, and should not be overridden without very good reason. Read more

Given the following trait:

trait Iterable {
    type IntoIter<'a>: 'a;
}

Then for the following impl:

impl<T> Iterable for Vec<T> where T: Clone {
    type IntoIter<'a> = Iter<'a, T>;
}

we generate:

-- Rule Normalize-From-Impl
forall<'a, T> {
    Normalize(<Vec<T> as Iterable>::IntoIter<'a> -> Iter<'a, T>>) :-
        Implemented(T: Clone),  // (1)
        Implemented(Iter<'a, T>: 'a).   // (2)
}
Apply the given folder folder to self; binders is the number of binders that are in scope when beginning the folder. Typically binders starts as 0, but is adjusted when we encounter Binders<T> in the IR or other similar constructs. Read more
A convenient alternative to try_fold_with for use with infallible folders. Do not override this method, to ensure coherence with try_fold_with. Read more
Apply the given visitor visitor to self; binders is the number of binders that are in scope when beginning the visitor. Typically binders starts as 0, but is adjusted when we encounter Binders<T> in the IR or other similar constructs. 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
Cast a value to type U using CastTo.
Compare self to key and return true if they are equal.

Returns the argument unchanged.

Instruments this type with the provided Span, returning an Instrumented wrapper. Read more
Instruments this type with the current Span, returning an Instrumented wrapper. Read more

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

Shifts this term in one level of binders.
Shifts a term valid at outer_binder so that it is valid at the innermost binder. See DebruijnIndex::shifted_in_from for a detailed explanation. Read more
Shifts a term valid at the innermost binder so that it is valid at outer_binder. See DebruijnIndex::shifted_out_to for a detailed explanation. Read more
Shifts this term out one level of binders.
The resulting type after obtaining ownership.
Creates owned data from borrowed data, usually by cloning. Read more
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.
Check whether there are free (non-bound) variables.
Attaches the provided Subscriber to this type, returning a WithDispatch wrapper. Read more
Attaches the current default Subscriber to this type, returning a WithDispatch wrapper. Read more