Function rustdoc::passes::collect_intra_doc_links::trait_impls_for

source ·
fn trait_impls_for<'a>(
    cx: &mut DocContext<'a>,
    ty: Ty<'a>,
    module: DefId
) -> FxHashSet<(DefId, DefId)>
Expand description

Given a type, return all trait impls in scope in module for that type. Returns a set of pairs of (impl_id, trait_id).

NOTE: this cannot be a query because more traits could be available when more crates are compiled! So it is not stable to serialize cross-crate.