Skip to content

Commit 5e763b6

Browse files
committed
Document associated_item methods
1 parent 45b0d9d commit 5e763b6

File tree

2 files changed

+17
-1
lines changed

2 files changed

+17
-1
lines changed

compiler/rustc_middle/src/query/mod.rs

+6-1
Original file line numberDiff line numberDiff line change
@@ -767,7 +767,12 @@ rustc_queries! {
767767
desc { |tcx| "comparing impl items against trait for `{}`", tcx.def_path_str(impl_id) }
768768
}
769769

770-
/// Given an `fn_def_id`, create and return the associated items for that function.
770+
/// Given `fn_def_id` of a trait or of an impl that implements a given trait:
771+
/// if `fn_def_id` is the def id of a function defined inside a trait, then it creates and returns
772+
/// the associated items that correspond to each impl trait in return position for that trait.
773+
/// if `fn_def_id` is the def id of a function defined inside an impl that implements a trait, then it
774+
/// creates and returns the associated items that correspond to each impl trait in return position
775+
/// of the implemented trait.
771776
query associated_items_for_impl_trait_in_trait(fn_def_id: DefId) -> &'tcx [DefId] {
772777
desc { |tcx| "creating associated items for impl trait in trait returned by `{}`", tcx.def_path_str(fn_def_id) }
773778
cache_on_disk_if { fn_def_id.is_local() }

compiler/rustc_ty_utils/src/assoc.rs

+11
Original file line numberDiff line numberDiff line change
@@ -118,6 +118,12 @@ fn associated_item_from_impl_item_ref(impl_item_ref: &hir::ImplItemRef) -> ty::A
118118
}
119119
}
120120

121+
/// Given an `fn_def_id` of a trait or of an impl that implements a given trait:
122+
/// if `fn_def_id` is the def id of a function defined inside a trait, then it creates and returns
123+
/// the associated items that correspond to each impl trait in return position for that trait.
124+
/// if `fn_def_id` is the def id of a function defined inside an impl that implements a trait, then it
125+
/// creates and returns the associated items that correspond to each impl trait in return position
126+
/// of the implemented trait.
121127
fn associated_items_for_impl_trait_in_trait(tcx: TyCtxt<'_>, fn_def_id: DefId) -> &'_ [DefId] {
122128
let parent_def_id = tcx.parent(fn_def_id);
123129

@@ -174,6 +180,8 @@ fn associated_items_for_impl_trait_in_trait(tcx: TyCtxt<'_>, fn_def_id: DefId) -
174180
}
175181
}
176182

183+
/// Given an `opaque_ty_def_id` corresponding to an impl trait in trait, create and return the
184+
/// corresponding associated item.
177185
fn associated_item_for_impl_trait_in_trait(
178186
tcx: TyCtxt<'_>,
179187
opaque_ty_def_id: LocalDefId,
@@ -188,6 +196,9 @@ fn associated_item_for_impl_trait_in_trait(
188196
trait_assoc_ty.def_id()
189197
}
190198

199+
/// Given an `trait_assoc_def_id` that corresponds to a previously synthethized impl trait in trait
200+
/// into an associated type and an `impl_def_id` corresponding to an impl block, create and return
201+
/// the corresponding associated item inside the impl block.
191202
fn impl_associated_item_for_impl_trait_in_trait(
192203
tcx: TyCtxt<'_>,
193204
trait_assoc_def_id: LocalDefId,

0 commit comments

Comments
 (0)