Trait rustc_hir::intravisit::nested_filter::NestedFilter

source ·
pub trait NestedFilter<'hir> {
    type Map: Map<'hir>;

    const INTER: bool;
    const INTRA: bool;
}
Expand description

Specifies what nested things a visitor wants to visit. By “nested things”, we are referring to bits of HIR that are not directly embedded within one another but rather indirectly, through a table in the crate. This is done to control dependencies during incremental compilation: the non-inline bits of HIR can be tracked and hashed separately.

The most common choice is OnlyBodies, which will cause the visitor to visit fn bodies for fns that it encounters, and closure bodies, but skip over nested item-like things.

See the comments at rustc_hir::intravisit for more details on the overall visit strategy.

Required Associated Types§

source

type Map: Map<'hir>

Required Associated Constants§

source

const INTER: bool

Whether the visitor visits nested “item-like” things. E.g., item, impl-item.

source

const INTRA: bool

Whether the visitor visits “intra item-like” things. E.g., function body, closure, AnonConst

Object Safety§

This trait is not object safe.

Implementors§

source§

impl NestedFilter<'_> for None

§

type Map = !

source§

const INTER: bool = false

source§

const INTRA: bool = false