Struct rustc::middle::ty::ProjectionTyUnstable
[-] [+]
[src]
pub struct ProjectionTy<'tcx> { pub trait_ref: Rc<TraitRef<'tcx>>, pub item_name: Name, }
Represents the projection of an associated type. In explicit UFCS
form this would be written <T as Trait<..>>::N
.
Fields
trait_ref | The trait reference |
item_name | The name |