struct SpanMapVisitor<'tcx> {
    pub(crate) tcx: TyCtxt<'tcx>,
    pub(crate) matches: FxHashMap<Span, LinkFromSrc>,
}

Fields

tcx: TyCtxt<'tcx>matches: FxHashMap<Span, LinkFromSrc>

Implementations

This function is where we handle hir::Path elements and add them into the “span map”.

Adds the macro call into the span map. Returns true if the span was inside a macro expansion, whether or not it was added to the span map.

The idea for the macro support is to check if the current Span comes from expansion. If so, we loop until we find the macro definition by using outer_expn_data in a loop. Finally, we get the information about the macro itself (span if “local”, DefId otherwise) and store it inside the span map.

Trait Implementations

Override this type to control which nested HIR are visited; see NestedFilter for details. If you override this type, you must also override nested_visit_map. Read more
If type NestedFilter is set to visit nested items, this method must also be overridden to provide a map to retrieve nested items. Read more
Invoked when a nested item is encountered. By default, when Self::NestedFilter is nested_filter::None, this method does nothing. You probably don’t want to override this method – instead, override Self::NestedFilter or use the “shallow” or “deep” visit patterns described on itemlikevisit::ItemLikeVisitor. The only reason to override this method is if you want a nested pattern but cannot supply a Map; see nested_visit_map for advice. Read more
Like visit_nested_item(), but for trait items. See visit_nested_item() for advice on when to override this method. Read more
Like visit_nested_item(), but for impl items. See visit_nested_item() for advice on when to override this method. Read more
Like visit_nested_item(), but for foreign items. See visit_nested_item() for advice on when to override this method. Read more
Invoked to visit the body of a function, method or closure. Like visit_nested_item, does nothing by default unless you override Self::NestedFilter. Read more
Visits the top-level item and (optionally) nested items / impl items. See visit_nested_item for details. Read more

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: 40 bytes