struct EarlyDocLinkResolver<'r, 'ra> {
    resolver: &'r mut Resolver<'ra>,
    sess: &'r Session,
    parent_scope: ParentScope<'ra>,
    visited_mods: DefIdSet,
    markdown_links: FxHashMap<String, Vec<PreprocessedMarkdownLink>>,
    doc_link_resolutions: FxHashMap<(Symbol, Namespace, DefId), Option<Res<NodeId>>>,
    traits_in_scope: DefIdMap<Vec<TraitCandidate>>,
    all_traits: Vec<DefId>,
    all_trait_impls: Vec<DefId>,
    all_macro_rules: FxHashMap<Symbol, Res<NodeId>>,
    document_private_items: bool,
}

Fields

resolver: &'r mut Resolver<'ra>sess: &'r Sessionparent_scope: ParentScope<'ra>visited_mods: DefIdSetmarkdown_links: FxHashMap<String, Vec<PreprocessedMarkdownLink>>doc_link_resolutions: FxHashMap<(Symbol, Namespace, DefId), Option<Res<NodeId>>>traits_in_scope: DefIdMap<Vec<TraitCandidate>>all_traits: Vec<DefId>all_trait_impls: Vec<DefId>all_macro_rules: FxHashMap<Symbol, Res<NodeId>>document_private_items: bool

Implementations

Add traits in scope for links in impls collected by the collect-intra-doc-links pass. That pass filters impls using type-based information, but we don’t yet have such information here, so we just conservatively calculate traits in scope for all modules having impls in them.

When reexports are inlined, they are replaced with item which they refer to, those items may have links in their doc comments, those links are resolved at the item definition site, so we need to know traits in scope at that definition site.

Trait Implementations

source

fn visit_expr_post(&mut self, _ex: &'ast Expr)

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

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.

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.
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

Layout

Note: Most layout information is completely unstable and may even differ between compilations. The only exception is types with certain repr(...) attributes. Please see the Rust Reference’s “Type Layout” chapter for details on type layout guarantees.

Size: 272 bytes