pub struct AssociatedTyDatum<I: Interner> {
pub trait_id: TraitId<I>,
pub id: AssocTypeId<I>,
pub name: I::Identifier,
pub binders: Binders<AssociatedTyDatumBound<I>>,
}
Expand description
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).
Implementations§
Source§impl<I: Interner> AssociatedTyDatum<I>
impl<I: Interner> AssociatedTyDatum<I>
Sourcepub fn bounds_on_self(&self, interner: &I) -> Vec<QuantifiedWhereClause<I>> ⓘ
pub fn bounds_on_self(&self, interner: &I) -> Vec<QuantifiedWhereClause<I>> ⓘ
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§
Source§impl<I: Clone + Interner> Clone for AssociatedTyDatum<I>where
I::Identifier: Clone,
impl<I: Clone + Interner> Clone for AssociatedTyDatum<I>where
I::Identifier: Clone,
Source§fn clone(&self) -> AssociatedTyDatum<I>
fn clone(&self) -> AssociatedTyDatum<I>
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moreSource§impl<I: Debug + Interner> Debug for AssociatedTyDatum<I>where
I::Identifier: Debug,
impl<I: Debug + Interner> Debug for AssociatedTyDatum<I>where
I::Identifier: Debug,
Source§impl<I: Hash + Interner> Hash for AssociatedTyDatum<I>where
I::Identifier: Hash,
impl<I: Hash + Interner> Hash for AssociatedTyDatum<I>where
I::Identifier: Hash,
Source§impl<I: PartialEq + Interner> PartialEq for AssociatedTyDatum<I>where
I::Identifier: PartialEq,
impl<I: PartialEq + Interner> PartialEq for AssociatedTyDatum<I>where
I::Identifier: PartialEq,
impl<I: Eq + Interner> Eq for AssociatedTyDatum<I>where
I::Identifier: Eq,
impl<I: Interner> StructuralPartialEq for AssociatedTyDatum<I>
Auto Trait Implementations§
impl<I> Freeze for AssociatedTyDatum<I>where
<I as Interner>::Identifier: Freeze,
<I as Interner>::DefId: Freeze,
<I as Interner>::InternedParameterKinds: Freeze,
impl<I> RefUnwindSafe for AssociatedTyDatum<I>where
<I as Interner>::Identifier: RefUnwindSafe,
<I as Interner>::DefId: RefUnwindSafe,
<I as Interner>::InternedParameterKinds: RefUnwindSafe,
<I as Interner>::InternedType: RefUnwindSafe,
<I as Interner>::InternedSubstitution: RefUnwindSafe,
<I as Interner>::InternedParameter: RefUnwindSafe,
impl<I> Send for AssociatedTyDatum<I>where
<I as Interner>::Identifier: Send,
<I as Interner>::DefId: Send,
<I as Interner>::InternedParameterKinds: Send,
<I as Interner>::InternedType: Send,
<I as Interner>::InternedSubstitution: Send,
<I as Interner>::InternedParameter: Send,
impl<I> Sync for AssociatedTyDatum<I>where
<I as Interner>::Identifier: Sync,
<I as Interner>::DefId: Sync,
<I as Interner>::InternedParameterKinds: Sync,
<I as Interner>::InternedType: Sync,
<I as Interner>::InternedSubstitution: Sync,
<I as Interner>::InternedParameter: Sync,
impl<I> Unpin for AssociatedTyDatum<I>where
<I as Interner>::Identifier: Unpin,
<I as Interner>::DefId: Unpin,
<I as Interner>::InternedParameterKinds: Unpin,
<I as Interner>::InternedType: Unpin,
<I as Interner>::InternedSubstitution: Unpin,
<I as Interner>::InternedParameter: Unpin,
impl<I> UnwindSafe for AssociatedTyDatum<I>where
<I as Interner>::Identifier: UnwindSafe,
<I as Interner>::DefId: UnwindSafe,
<I as Interner>::InternedParameterKinds: UnwindSafe,
<I as Interner>::InternedType: UnwindSafe,
<I as Interner>::InternedSubstitution: UnwindSafe,
<I as Interner>::InternedParameter: UnwindSafe,
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more