Module rustc::traits::query::normalize_erasing_regions
[−]
[src]
🔬 This is a nightly-only experimental API. (rustc_private
)
this crate is being loaded from the sysroot, an unstable location; did you mean to load this crate from crates.io via Cargo.toml
instead?
Methods for normalizing when you don't care about regions (and
aren't doing type inference). If either of those things don't
apply to you, use infcx.normalize(...)
.
The methods in this file use a TypeFolder
to recursively process
contents, invoking the underlying
normalize_ty_after_erasing_regions
query for each type found
within. (This underlying query is what is cached.)