pub struct TyCtxt<'tcx> {
    gcx: &'tcx GlobalCtxt<'tcx>,
}
Expand description

The central data structure of the compiler. It stores references to the various arenas and also houses the results of the various compiler queries that have been performed. See the rustc dev guide for more details.

Fields

gcx: &'tcx GlobalCtxt<'tcx>

Implementations

Fetch and return the user-visible lint level for the given lint at the given HirId.

Walks upwards from id to find a node which might change lint levels with attributes. It stops at bound and just returns it if reached.

Returns the DefId for a given LangItem. If not found, fatally aborts compilation.

Evaluates the stability of an item.

Returns EvalResult::Allow if the item is stable, or unstable but the corresponding #![feature] has been provided. Returns EvalResult::Deny which describes the offending unstable feature otherwise.

If id is Some(_), this function will also check if the item at def_id has been deprecated. If the item is indeed deprecated, we will emit a deprecation lint attached to id.

Evaluates the stability of an item.

Returns EvalResult::Allow if the item is stable, or unstable but the corresponding #![feature] has been provided. Returns EvalResult::Deny which describes the offending unstable feature otherwise.

If id is Some(_), this function will also check if the item at def_id has been deprecated. If the item is indeed deprecated, we will emit a deprecation lint attached to id.

Pass AllowUnstable::Yes to allow_unstable to force an unstable item to be allowed. Deprecation warnings will be emitted normally.

Evaluates the default-impl stability of an item.

Returns EvalResult::Allow if the item’s default implementation is stable, or unstable but the corresponding #![feature] has been provided. Returns EvalResult::Deny which describes the offending unstable feature otherwise.

Checks if an item is stable or error out.

If the item defined by def_id is unstable and the corresponding #![feature] does not exist, emits an error.

This function will also check if the item is deprecated. If so, and id is not None, a deprecated lint attached to id will be emitted.

Returns true if item is allowed aka, stable or unstable under an enabled feature.

Checks if an item is stable or error out.

If the item defined by def_id is unstable and the corresponding #![feature] does not exist, emits an error.

This function will also check if the item is deprecated. If so, and id is not None, a deprecated lint attached to id will be emitted.

Pass AllowUnstable::Yes to allow_unstable to force an unstable item to be allowed. Deprecation warnings will be emitted normally.

Returns true if item is allowed aka, stable or unstable under an enabled feature.

Like check_stability, except that we permit items to have custom behaviour for missing stability attributes (not necessarily just emit a bug!). This is necessary for default generic parameters, which only have stability attributes if they were added after the type on which they’re defined.

Returns true if item is allowed aka, stable or unstable under an enabled feature.

Evaluates a constant without providing any substitutions. This is useful to evaluate consts that can’t take any generic arguments like statics, const items or enum discriminants. If a generic parameter is used within the constant ErrorHandled::ToGeneric will be returned.

Resolves and evaluates a constant.

The constant can be located on a trait like <A as B>::C, in which case the given substitutions and environment are used to resolve the constant. Alternatively if the constant has generic parameters in scope the substitutions are used to evaluate the value of the constant. For example in fn foo<T>() { let _ = [0; bar::<T>()]; } the repeat count constant bar::<T>() requires a substitution for T, if the substitution for T is still too generic for the constant to be evaluated then Err(ErrorHandled::TooGeneric) is returned.

Evaluate a constant to a ConstValue.

Evaluate a constant to a type-level constant.

Evaluate a static’s initializer, returning the allocation of the initializer’s memory.

Destructure a mir constant ADT or array into its variant index and its field values. Panics if the destructuring fails, use try_destructure_mir_constant for fallible version.

Obtains a new allocation ID that can be referenced but does not yet have an allocation backing it.

Make sure to call set_alloc_id_memory or set_alloc_id_same_memory before returning such an AllocId from a query.

Reserves a new ID if this allocation has not been dedup-reserved before. Should only be used for “symbolic” allocations (function pointers, vtables, statics), we don’t want to dedup IDs for “real” memory!

Generates an AllocId for a static or return a cached one in case this function has been called on the same static before.

Generates an AllocId for a function. Depending on the function type, this might get deduplicated or assigned a new ID each time.

Generates an AllocId for a (symbolic, not-reified) vtable. Will get deduplicated.

Interns the Allocation and return a new AllocId, even if there’s already an identical Allocation with a different AllocId. Statics with identical content will still point to the same Allocation, i.e., their data will be deduplicated through Allocation interning – but they are different places in memory and as such need different IDs.

Returns None in case the AllocId is dangling. An InterpretCx can still have a local Allocation for that AllocId, but having such an AllocId in a constant is illegal and will likely ICE. This function exists to allow const eval to detect the difference between evaluation- local dangling pointers and allocations in constants/statics.

Panics in case the AllocId is dangling. Since that is impossible for AllocIds in constants (as all constants must pass interning and validation that check for dangling ids), this function is frequently used throughout rustc, but should not be used within the miri engine.

Freezes an AllocId created with reserve by pointing it at an Allocation. Trying to call this function twice, even with the same Allocation will ICE the compiler.

Freezes an AllocId created with reserve by pointing it at an Allocation. May be called twice for the same (AllocId, Allocation) pair.

Shims which make dealing with WithOptConstParam easier.

For more information on why this is needed, consider looking at the docs for WithOptConstParam itself.

An associated type was expected and a different type was found.

We perform a few different checks to see what we can suggest:

  • In the current item, look for associated functions that return the expected type and suggest calling them. (Not a structured suggestion.)
  • If any of the item’s generic bounds can be constrained, we suggest constraining the associated type to the found type.
  • If the associated type has a default type and was expected inside of a trait, we mention that this is disallowed.
  • If all other things fail, and the error is not because of a mismatch between the trait and the impl, we provide a generic help to constrain the assoc type or call an assoc fn that returns the type.

When the expected impl Trait is not defined in the current item, it will come from a return type. This can occur when dealing with TryStream (#71035).

Given a slice of hir::GenericBounds, if any of them corresponds to the trait_ref requirement, provide a structured suggestion to constrain it to a given type ty.

is_bound_surely_present indicates whether we know the bound we’re looking for is inside bounds. If that’s the case then we can consider bounds containing only one trait bound as the one we’re looking for. This can help in cases where the associated type is defined on a supertrait of the one present in the bounds.

Given a span corresponding to a bound, provide a structured suggestion to set an associated type to a given type ty.

Folds the escaping and free regions in value using f, and sets skipped_regions to true if any late-bound region was found and skipped.

Replaces all regions bound by the given Binder with the results returned by the closure; the closure is expected to return a free region (relative to this binder), and hence the binder is removed in the return type. The closure is invoked once for each unique BoundRegionKind; multiple references to the same BoundRegionKind will reuse the previous result. A map is returned at the end with each bound region and the free region that replaced it.

Panics

This method only replaces late bound regions. Any types or constants bound by value will cause an ICE.

Replaces all escaping bound vars. The fld_r closure replaces escaping bound regions; the fld_t closure replaces escaping bound types and the fld_c closure replaces escaping bound consts.

Replaces all types or regions bound by the given Binder. The fld_r closure replaces bound regions, the fld_t closure replaces bound types, and fld_c replaces bound constants.

Replaces any late-bound regions bound in value with free variants attached to all_outlive_scope.

Replaces any late-bound regions bound in value with 'erased. Useful in codegen but also method lookup and a few other places where precise region relationships are not required.

Rewrite any late-bound regions so that they are anonymous. Region numbers are assigned starting at 0 and increasing monotonically in the order traversed by the fold operation.

The chief purpose of this function is to canonicalize regions so that two FnSigs or TraitRefs which are equivalent up to region naming will become structurally identical. For example, for<'a, 'b> fn(&'a isize, &'b isize) and for<'a, 'b> fn(&'b isize, &'a isize) will become identical after anonymization.

Anonymize all bound variables in value, this is mostly used to improve caching.

Checks whether a type is visibly uninhabited from a particular module.

Example
#![feature(never_type)]
enum Void {}
mod a {
    pub mod b {
        pub struct SecretlyUninhabited {
            _priv: !,
        }
    }
}

mod c {
    use super::Void;
    pub struct AlsoSecretlyUninhabited {
        _priv: Void,
    }
    mod d {
    }
}

struct Foo {
    x: a::b::SecretlyUninhabited,
    y: c::AlsoSecretlyUninhabited,
}

In this code, the type Foo will only be visibly uninhabited inside the modules b, c and d. This effects pattern-matching on Foo or types that contain Foo.

Example
let foo_result: Result<T, Foo> = ... ;
let Ok(t) = foo_result;

This code should only compile in modules where the uninhabitedness of Foo is visible.

Erase the regions in value and then fully normalize all the types found within. The result will also have regions erased.

This should only be used outside of type inference. For example, it assumes that normalization will succeed.

Tries to erase the regions in value and then fully normalize all the types found within. The result will also have regions erased.

Contrary to normalize_erasing_regions this function does not assume that normalization succeeds.

If you have a Binder<'tcx, T>, you can do this to strip out the late-bound regions and then normalize the result, yielding up a T (with regions erased). This is appropriate when the binder is being instantiated at the call site.

N.B., currently, higher-ranked type bounds inhibit normalization. Therefore, each time we erase them in codegen, we need to normalize the contents.

If you have a Binder<'tcx, T>, you can do this to strip out the late-bound regions and then normalize the result, yielding up a T (with regions erased). This is appropriate when the binder is being instantiated at the call site.

N.B., currently, higher-ranked type bounds inhibit normalization. Therefore, each time we erase them in codegen, we need to normalize the contents.

Monomorphizes a type from the AST by first applying the in-scope substitutions and then normalizing any associated types. Panics if normalization fails. In case normalization might fail use try_subst_and_normalize_erasing_regions instead.

Monomorphizes a type from the AST by first applying the in-scope substitutions and then trying to normalize any associated types. Contrary to subst_and_normalize_erasing_regions this does not assume that normalization succeeds.

Returns a string identifying this DefId. This string is suitable for user output.

Returns a transparent wrapper for TyCtxt, which ensures queries are executed instead of just returning their results.

Returns a transparent wrapper for TyCtxt which uses span as the location of queries performed through it.

[query description - consider adding a doc-comment!] trigger a delay span bug

[query description - consider adding a doc-comment!] get the resolver outputs

[query description - consider adding a doc-comment!] get the resolver for lowering

Return the span for a definition. Contrary to def_span below, this query returns the full absolute span of the definition. This span is meant for dep-tracking rather than diagnostics. It should not be used outside of rustc_middle::hir::source_map.

Represents crate as a whole (as distinct from the top-level crate module). If you call hir_crate (e.g., indirectly by calling tcx.hir().krate()), we will have to assume that any change means that you need to be recompiled. This is because the hir_crate query gives you access to all other items. To avoid this fate, do not call tcx.hir().krate(); instead, prefer wrappers like tcx.visit_all_items_in_krate().

All items in the crate.

The items in a module.

This can be conveniently accessed by tcx.hir().visit_item_likes_in_module. Avoid calling this query directly.

Gives access to the HIR node for the HIR owner key.

This can be conveniently accessed by methods on tcx.hir(). Avoid calling this query directly.

Gives access to the HIR ID for the given LocalDefId owner key.

This can be conveniently accessed by methods on tcx.hir(). Avoid calling this query directly.

Gives access to the HIR node’s parent for the HIR owner key.

This can be conveniently accessed by methods on tcx.hir(). Avoid calling this query directly.

Gives access to the HIR nodes and bodies inside the HIR owner key.

This can be conveniently accessed by methods on tcx.hir(). Avoid calling this query directly.

Gives access to the HIR attributes inside the HIR owner key.

This can be conveniently accessed by methods on tcx.hir(). Avoid calling this query directly.

Computes the DefId of the corresponding const parameter in case the key is a const argument and returns None otherwise.

let a = foo::<7>();
//            ^ Calling `opt_const_param_of` for this argument,

fn foo<const N: usize>()
//           ^ returns this `DefId`.

fn bar() {
// ^ While calling `opt_const_param_of` for other bodies returns `None`.
}

Given the def_id of a const-generic parameter, computes the associated default const parameter. e.g. fn example<const N: usize=3> called on N would return 3.

Returns the Ty of the given DefId. If the DefId points to an alias, it will “skip” this alias to return the aliased type.

[query description - consider adding a doc-comment!] compare an impl and trait method signature, inferring any hidden impl Trait types in the process

[query description - consider adding a doc-comment!] running analysis passes on this crate

This query checks the fulfillment of collected lint expectations. All lint emitting queries have to be done before this is executed to ensure that all expectations can be fulfilled.

This is an extra query to enable other drivers (like rustdoc) to only execute a small subset of the analysis query, while allowing lints to be expected. In rustc, this query will be executed as part of the analysis query and doesn’t have to be called a second time.

Tools can additionally pass in a tool filter. That will restrict the expectations to only trigger for lints starting with the listed tool name. This is useful for cases were not all linting code from rustc was called. With the default None all registered lints will also be checked for expectation fulfillment.

Maps from the DefId of an item (trait/struct/enum/fn) to its associated generics.

Maps from the DefId of an item (trait/struct/enum/fn) to the predicates (where-clauses) that must be proven true in order to reference it. This is almost always the “predicates query” that you want.

predicates_of builds on predicates_defined_on – in fact, it is almost always the same as that query, except for the case of traits. For traits, predicates_of contains an additional Self: Trait<...> predicate that users don’t actually write. This reflects the fact that to invoke the trait (e.g., via Default::default) you must supply types that actually implement the trait. (However, this extra predicate gets in the way of some checks, which are intended to operate over only the actual where-clauses written by the user.)

Returns the list of bounds that can be used for SelectionCandidate::ProjectionCandidate(_) and ProjectionTyCandidate::TraitDef. Specifically this is the bounds written on the trait’s type definition, or those after the impl keyword

type X: Bound + 'lt
//      ^^^^^^^^^^^
impl Debug + Display
//   ^^^^^^^^^^^^^^^

key is the DefId of the associated type or opaque type.

Bounds from the parent (e.g. with nested impl trait) are not included.

Elaborated version of the predicates from explicit_item_bounds.

For example:

trait MyTrait {
    type MyAType: Eq + ?Sized;
}

explicit_item_bounds returns [<Self as MyTrait>::MyAType: Eq], and item_bounds returns

[
    <Self as Trait>::MyAType: Eq,
    <Self as Trait>::MyAType: PartialEq<<Self as Trait>::MyAType>
]

Bounds from the parent (e.g. with nested impl trait) are not included.

[query description - consider adding a doc-comment!] looking up the native libraries of a linked crate

[query description - consider adding a doc-comment!] looking up lint levels for key

[query description - consider adding a doc-comment!] computing #[expect]ed lints in this crate

[query description - consider adding a doc-comment!] parent module of tcx.def_path_str(key.to_def_id())

[query description - consider adding a doc-comment!] expansion that defined tcx.def_path_str(key)

[query description - consider adding a doc-comment!] checking if the crate is_panic_runtime

Fetch the THIR for a given body. If typeck for that body failed, returns an empty Thir.

Create a THIR tree for debugging.

Set of all the DefIds in this crate that have MIR associated with them. This includes all the body owners, but also things like struct constructors.

Maps DefId’s that have an associated mir::Body to the result of the MIR const-checking pass. This is the set of qualifs in the final value of a const.

[query description - consider adding a doc-comment!] const checking the const argument tcx.def_path_str(key.0.to_def_id())

Fetch the MIR for a given DefId right after it’s built - this includes unreachable code.

Fetch the MIR for a given DefId up till the point where it is ready for const qualification.

See the README for the mir module for details.

Try to build an abstract representation of the given constant.

Try to build an abstract representation of the given constant.

[query description - consider adding a doc-comment!] trying to unify the generic constants tcx.def_path_str(key.value.0.def.did) and tcx.def_path_str(key.value.1.def.did)

[query description - consider adding a doc-comment!] elaborating drops for tcx.def_path_str(key.did.to_def_id())

[query description - consider adding a doc-comment!] caching mir of tcx.def_path_str(key) for CTFE

[query description - consider adding a doc-comment!] MIR for CTFE of the const argument tcx.def_path_str(key.0.to_def_id())

[query description - consider adding a doc-comment!] processing if key.const_param_did.is_some() { "the const argument " } else { "" } tcx.def_path_str(key.did.to_def_id())

[query description - consider adding a doc-comment!] symbols for captures of closure tcx.def_path_str(key.1.to_def_id()) in tcx.def_path_str(key.0.to_def_id())

MIR after our optimization passes have run. This is MIR that is ready for codegen. This is also the only query that can fetch non-local MIR, at present.

Returns coverage summary info for a function, after executing the InstrumentCoverage MIR pass (assuming the -Cinstrument-coverage option is enabled).

Returns the CodeRegions for a function that has instrumented coverage, in case the function was optimized out before codegen, and before being added to the Coverage Map.

The DefId is the DefId of the containing MIR body. Promoteds do not have their own DefId. This function returns all promoteds in the specified body. The body references promoteds by the DefId and the mir::Promoted index. This is necessary, because after inlining a body may refer to promoteds from other bodies. In that case you still need to use the DefId of the original body.

[query description - consider adding a doc-comment!] optimizing promoted MIR for the const argument tcx.def_path_str(key.0.to_def_id())

Erases regions from ty to yield a new type. Normally you would just use tcx.erase_regions(value), however, which uses this query as a kind of cache.

[query description - consider adding a doc-comment!] wasm import module map

Maps from the DefId of an item (trait/struct/enum/fn) to the predicates (where-clauses) directly defined on it. This is equal to the explicit_predicates_of predicates plus the inferred_outlives_of predicates.

Returns everything that looks like a predicate written explicitly by the user on a trait item.

Traits are unusual, because predicates on associated types are converted into bounds on that type for backwards compatibility:

trait X where Self::U: Copy { type U; }

becomes

trait X { type U: Copy; }

explicit_predicates_of and explicit_item_bounds will then take the appropriate subsets of the predicates here.

Returns the predicates written explicitly by the user.

Returns the inferred outlives predicates (e.g., for struct Foo<'a, T> { x: &'a T }, this would return T: 'a).

Maps from the DefId of a trait to the list of super-predicates. This is a subset of the full list of predicates. We store these in a separate map because we must evaluate them even during type conversion, often before the full predicates are available (note that supertraits have additional acyclicity requirements).

The Option<Ident> is the name of an associated type. If it is None, then this query returns the full set of predicates. If Some<Ident>, then the query returns only the subset of super-predicates that reference traits that define the given associated type. This is used to avoid cycles in resolving types like T::Item.

To avoid cycles within the predicates of a single item we compute per-type-parameter predicates for resolving T::AssocTy.

[query description - consider adding a doc-comment!] computing trait definition for tcx.def_path_str(key)

[query description - consider adding a doc-comment!] computing ADT definition for tcx.def_path_str(key)

[query description - consider adding a doc-comment!] computing Drop impl for tcx.def_path_str(key)

[query description - consider adding a doc-comment!] computing Sized constraints for tcx.def_path_str(key)

[query description - consider adding a doc-comment!] computing drop-check constraints for tcx.def_path_str(key)

Returns true if this is a const fn, use the is_const_fn to know whether your crate actually sees it as const fn (e.g., the const-fn-ness might be unstable and you might not have the feature gate active).

Do not call this function manually. It is only meant to cache the base data for the is_const_fn function. Consider using is_const_fn or is_const_fn_raw instead.

[query description - consider adding a doc-comment!] checking if the function is async: tcx.def_path_str(key)

Returns true if calls to the function may be promoted.

This is either because the function is e.g., a tuple-struct or tuple-variant constructor, or because it has the #[rustc_promotable] attribute. The attribute should be removed in the future in favour of some form of check which figures out whether the function does not inspect the bits of any of its arguments (so is essentially just a constructor function).

Returns true if this is a foreign item (i.e., linked via extern { ... }).

Returns Some(generator_kind) if the node pointed to by def_id is a generator.

Gets a map with the variance of every item; use item_variance instead.

Maps from the DefId of a type or region parameter to its (inferred) variance.

Maps from thee DefId of a type to its (inferred) outlives.

Maps from an impl/trait DefId to a list of the DefIds of its items.

Maps from a trait item to the trait item “descriptor”.

Collects the associated items defined on a trait or impl.

Maps from associated items on a trait to the corresponding associated item on the impl specified by impl_id.

For example, with the following code

struct Type {}
                        // DefId
trait Trait {           // trait_id
    fn f();             // trait_f
    fn g() {}           // trait_g
}

impl Trait for Type {   // impl_id
    fn f() {}           // impl_f
    fn g() {}           // impl_g
}

The map returned for tcx.impl_item_implementor_ids(impl_id) would be { trait_f: impl_f, trait_g: impl_g }

Given an impl_id, return the trait it implements. Return None if this is an inherent impl.

[query description - consider adding a doc-comment!] computing implementation polarity of tcx.def_path_str(impl_id)

[query description - consider adding a doc-comment!] computing Self type wrt issue #33140 tcx.def_path_str(key)

Maps a DefId of a type to a list of its inherent impls. Contains implementations of methods that are inherent to a type. Methods in these implementations don’t need to be exported.

[query description - consider adding a doc-comment!] collecting all inherent impls for {:?}

The result of unsafety-checking this LocalDefId.

[query description - consider adding a doc-comment!] unsafety-checking the const argument tcx.def_path_str(key.0.to_def_id())

Unsafety-check this LocalDefId with THIR unsafeck. This should be used with -Zthir-unsafeck.

[query description - consider adding a doc-comment!] unsafety-checking the const argument tcx.def_path_str(key.0.to_def_id())

HACK: when evaluated, this reports an “unsafe derive on repr(packed)” error.

Unsafety checking is executed for each method separately, but we only want to emit this error once per derive. As there are some impls with multiple methods, we use a query for deduplication.

Returns the types assumed to be well formed while “inside” of the given item.

Note that we’ve liberated the late bound regions of function signatures, so this can not be used to check whether these types are well formed.

Computes the signature of the function.

Performs lint checking for the module.

Checks the attributes in the module.

Checks for uses of unstable APIs in the module.

Checks the const bodies in the module for illegal operations (e.g. if or loop).

Checks the loops in the module.

[query description - consider adding a doc-comment!] checking naked functions in describe_as_module(key, tcx)

[query description - consider adding a doc-comment!] checking item types in describe_as_module(key, tcx)

[query description - consider adding a doc-comment!] checking privacy in describe_as_module(key, tcx)

[query description - consider adding a doc-comment!] checking liveness of variables in tcx.def_path_str(key)

Return the live symbols in the crate for dead code check.

The second return value maps from ADTs to ignored derived traits (e.g. Debug and Clone) and their respective impl (i.e., part of the derive macro)

[query description - consider adding a doc-comment!] checking deathness of variables in describe_as_module(key, tcx)

[query description - consider adding a doc-comment!] checking that impls are well-formed in describe_as_module(key, tcx)

[query description - consider adding a doc-comment!] checking that types are well-formed in describe_as_module(key, tcx)

[query description - consider adding a doc-comment!] collecting item types in describe_as_module(key, tcx)

Caches CoerceUnsized kinds for impls on custom types.

[query description - consider adding a doc-comment!] type-checking all item bodies

[query description - consider adding a doc-comment!] type-checking tcx.def_path_str(key.to_def_id())

[query description - consider adding a doc-comment!] type-checking the const argument tcx.def_path_str(key.0.to_def_id())

[query description - consider adding a doc-comment!] type-checking tcx.def_path_str(key.to_def_id())

[query description - consider adding a doc-comment!] used_trait_imports tcx.def_path_str(key.to_def_id())

[query description - consider adding a doc-comment!] checking whether tcx.def_path_str(def_id) has a body

[query description - consider adding a doc-comment!] coherence checking all impls of trait tcx.def_path_str(def_id)

Borrow-checks the function body. If this is a closure, returns additional requirements that the closure’s creator must verify.

[query description - consider adding a doc-comment!] borrow-checking the const argument tcx.def_path_str(key.0.to_def_id())

Gets a complete map from all types to their inherent impls. Not meant to be used directly outside of coherence.

Checks all types in the crate for overlap in their inherent impls. Reports errors. Not meant to be used directly outside of coherence.

Checks whether all impls in the crate pass the overlap check, returning which impls fail it. If all impls are correct, the returned slice is empty.

Check whether the function has any recursion that could cause the inliner to trigger a cycle. Returns the call stack causing the cycle. The call stack does not contain the current function, just all intermediate functions.

Obtain all the calls into other local functions

Evaluates a constant and returns the computed allocation.

Do not use this directly, use the tcx.eval_static_initializer wrapper.

Evaluates const items or anonymous constants (such as enum variant explicit discriminants or array lengths) into a representation suitable for the type system and const generics.

Do not use this directly, use one of the following wrappers: tcx.const_eval_poly, tcx.const_eval_resolve, tcx.const_eval_instance, or tcx.const_eval_global_id.

Evaluate a constant and convert it to a type level constant or return None if that is not possible.

Converts a type level constant value into ConstValue

Destructures array, ADT or tuple constants into the constants of their fields.

Tries to destructure an mir::ConstantKind ADT or array into its variant index and its field values.

Dereference a constant reference or raw pointer and turn the result into a constant again.

[query description - consider adding a doc-comment!] get a &core::panic::Location referring to a span

[query description - consider adding a doc-comment!] converting literal to const

[query description - consider adding a doc-comment!] converting literal to mir constant

[query description - consider adding a doc-comment!] match-checking tcx.def_path_str(key)

Performs part of the privacy check and computes “access levels”.

[query description - consider adding a doc-comment!] checking for private elements in public interfaces

[query description - consider adding a doc-comment!] reachability

Per-body region::ScopeTree. The DefId should be the owner DefId for the body; in the case of closures, this will be redirected to the enclosing function.

Generates a MIR body for the shim.

The symbol_name query provides the symbol name for calling a given instance from the local crate. In particular, it will also look up the correct symbol name of instances from upstream crates.

[query description - consider adding a doc-comment!] looking up definition kind of tcx.def_path_str(def_id)

Gets the span for the definition.

Gets the span for the identifier of the definition.

[query description - consider adding a doc-comment!] looking up stability of tcx.def_path_str(def_id)

[query description - consider adding a doc-comment!] looking up const stability of tcx.def_path_str(def_id)

[query description - consider adding a doc-comment!] looking up default body stability of tcx.def_path_str(def_id)

[query description - consider adding a doc-comment!] computing should_inherit_track_caller of tcx.def_path_str(def_id)

source

pub fn lookup_deprecation_entry(
    self,
    key: impl IntoQueryParam<DefId>
) -> lookup_deprecation_entry<'tcx>

[query description - consider adding a doc-comment!] checking whether tcx.def_path_str(def_id) is deprecated

Determines whether an item is annotated with doc(hidden).

Returns the attributes on the item at def_id.

Do not use this directly, use tcx.get_attrs instead.

[query description - consider adding a doc-comment!] computing codegen attributes of tcx.def_path_str(def_id)

[query description - consider adding a doc-comment!] computing target features for inline asm of tcx.def_path_str(def_id)

[query description - consider adding a doc-comment!] looking up function parameter names for tcx.def_path_str(def_id)

Gets the rendered value of the specified constant or associated constant. Used by rustdoc.

[query description - consider adding a doc-comment!] computing specialization parent impl of tcx.def_path_str(def_id)

[query description - consider adding a doc-comment!] checking if item has ctfe mir available: tcx.def_path_str(key)

[query description - consider adding a doc-comment!] checking if item has mir available: tcx.def_path_str(key)

[query description - consider adding a doc-comment!] finding all existential vtable entries for trait tcx.def_path_str(key.def_id())

[query description - consider adding a doc-comment!] finding all vtable entries for trait tcx.def_path_str(key.def_id())

[query description - consider adding a doc-comment!] finding the slot within vtable for trait object key.1 vtable ptr during trait upcasting coercion from key.0 vtable

[query description - consider adding a doc-comment!] vtable const allocation for < key.0 as key.1.map(| trait_ref | format! ("{}", trait_ref)).unwrap_or("_".to_owned()) >

[query description - consider adding a doc-comment!] computing candidate for key.1

Return all impl blocks in the current crate.

Given a trait trait_id, return all known impl blocks.

[query description - consider adding a doc-comment!] building specialization graph of trait tcx.def_path_str(trait_id)

[query description - consider adding a doc-comment!] determine object safety of trait tcx.def_path_str(trait_id)

Gets the ParameterEnvironment for a given item; this environment will be in “user-facing” mode, meaning that it is suitable for type-checking etc, and it does not normalize specializable associated types. This is almost always what you want, unless you are doing MIR optimizations, in which case you might want to use reveal_all() method to change modes.

Like param_env, but returns the ParamEnv in Reveal::All mode. Prefer this over tcx.param_env(def_id).with_reveal_all_normalized(tcx), as this method is more efficient.

Trait selection queries. These are best used by invoking ty.is_copy_modulo_regions(), ty.is_copy(), etc, since that will prune the environment where possible.

Query backing Ty::is_sized.

Query backing Ty::is_freeze.

Query backing Ty::is_unpin.

Query backing Ty::needs_drop.

Query backing Ty::has_significant_drop_raw.

Query backing Ty::is_structural_eq_shallow.

This is only correct for ADTs. Call is_structural_eq_shallow to handle all types correctly.

A list of types where the ADT requires drop if and only if any of those types require drop. If the ADT is known to always need drop then Err(AlwaysRequiresDrop) is returned.

A list of types where the ADT requires drop if and only if any of those types has significant drop. A type marked with the attribute rustc_insignificant_dtor is considered to not be significant. A drop is significant if it is implemented by the user or does anything that will have any observable behavior (other than freeing up memory). If the ADT is known to have a significant destructor then Err(AlwaysRequiresDrop) is returned.

Computes the layout of a type. Note that this implicitly executes in “reveal all” mode, and will normalize the input type.

Compute a FnAbi suitable for indirect calls, i.e. to fn pointers.

NB: this doesn’t handle virtual calls - those should use fn_abi_of_instance instead, where the instance is an InstanceDef::Virtual.

Compute a FnAbi suitable for declaring/defining an fn instance, and for direct calls to an fn.

NB: that includes virtual calls, which are represented by “direct calls” to an InstanceDef::Virtual instance (of <dyn Trait as Trait>::fn).

[query description - consider adding a doc-comment!] dylib dependency formats of crate

[query description - consider adding a doc-comment!] get the linkage format of all dependencies

[query description - consider adding a doc-comment!] checking if the crate is_compiler_builtins

[query description - consider adding a doc-comment!] checking if the crate has_global_allocator

[query description - consider adding a doc-comment!] checking if the crate has_panic_handler

[query description - consider adding a doc-comment!] query a crate is #![profiler_runtime]

[query description - consider adding a doc-comment!] check if tcx.def_path_str(key.to_def_id()) contains FFI-unwind calls

[query description - consider adding a doc-comment!] query a crate’s required panic strategy

[query description - consider adding a doc-comment!] query a crate’s configured panic-in-drop strategy

[query description - consider adding a doc-comment!] test whether a crate has #![no_builtins]

[query description - consider adding a doc-comment!] query a crate’s symbol mangling version

[query description - consider adding a doc-comment!] getting crate’s ExternCrateData

[query description - consider adding a doc-comment!] computing whether impls specialize one another

[query description - consider adding a doc-comment!] traits in scope at a block

[query description - consider adding a doc-comment!] looking up reexports of module tcx.def_path_str(def_id.to_def_id())

[query description - consider adding a doc-comment!] looking up whether tcx.def_path_str(def_id) is a default impl

[query description - consider adding a doc-comment!] checking that tcx.def_path_str(key.to_def_id()) is well-formed

[query description - consider adding a doc-comment!] looking up the exported symbols of a crate

[query description - consider adding a doc-comment!] checking whether tcx.def_path_str(def_id) is an exported symbol

[query description - consider adding a doc-comment!] checking whether tcx.def_path_str(def_id.to_def_id()) is reachable from outside the crate

The entire set of monomorphizations the local crate can safely link to because they are exported from upstream crates. Do not depend on this directly, as its value changes anytime a monomorphization gets added or removed in any upstream crate. Instead use the narrower upstream_monomorphizations_for, upstream_drop_glue_for, or, even better, Instance::upstream_monomorphization().

Returns the set of upstream monomorphizations available for the generic function identified by the given def_id. The query makes sure to make a stable selection if the same monomorphization is available in multiple upstream crates.

You likely want to call Instance::upstream_monomorphization() instead of invoking this query directly.

Returns the upstream crate that exports drop-glue for the given type (substs is expected to be a single-item list containing the type one wants drop-glue for).

This is a subset of upstream_monomorphizations_for in order to increase dep-tracking granularity. Otherwise adding or removing any type with drop-glue in any upstream crate would invalidate all functions calling drop-glue of an upstream type.

You likely want to call Instance::upstream_monomorphization() instead of invoking this query directly.

NOTE: This query could easily be extended to also support other common functions that have are large set of monomorphizations (like Clone::clone for example).

[query description - consider adding a doc-comment!] looking up the foreign modules of a linked crate

Identifies the entry-point (e.g., the main function) for a given crate, returning None if there is no entry point (such as for library crates).

[query description - consider adding a doc-comment!] looking up the derive registrar for a crate

[query description - consider adding a doc-comment!] looking up the hash a crate

[query description - consider adding a doc-comment!] looking up the hash of a host version of a crate

[query description - consider adding a doc-comment!] looking up the extra filename for a crate

[query description - consider adding a doc-comment!] looking up the paths for extern crates

Given a crate and a trait, look up all impls of that trait in the crate. Return (impl_id, self_ty).

Collects all incoherent impls for the given crate and type.

Do not call this directly, but instead use the incoherent_impls query. This query is only used to get the data necessary for that query.

[query description - consider adding a doc-comment!] is_dllimport_foreign_item( tcx.def_path_str(def_id) )

[query description - consider adding a doc-comment!] is_statically_included_foreign_item( tcx.def_path_str(def_id) )

[query description - consider adding a doc-comment!] native_library_kind( tcx.def_path_str(def_id) )

[query description - consider adding a doc-comment!] native_library( tcx.def_path_str(def_id) )

Does lifetime resolution, but does not descend into trait items. This should only be used for resolving lifetimes of on trait definitions, and is used to avoid cycles. Importantly, resolve_lifetimes still visits the same lifetimes and is responsible for diagnostics. See `rustc_resolve::late::lifetimes for details.

Does lifetime resolution on items. Importantly, we can’t resolve lifetimes directly on things like trait methods, because of trait params. See `rustc_resolve::late::lifetimes for details.

[query description - consider adding a doc-comment!] looking up a named region

[query description - consider adding a doc-comment!] testing if a region is late bound

For a given item’s generic parameter, gets the default lifetimes to be used for each parameter if a trait object were to be passed for that parameter. For example, for T in struct Foo<'a, T>, this would be 'static. For T in struct Foo<'a, T: 'a>, this would instead be 'a. This query will panic if passed something that is not a type parameter.

[query description - consider adding a doc-comment!] looking up late bound vars

Computes the visibility of the provided def_id.

If the item from the def_id doesn’t have a visibility, it will panic. For example a generic type parameter will panic if you call this method on it:

pub trait Foo<T: Debug> {}

In here, if you call visibility on T, it’ll panic.

Computes the set of modules from which this type is visibly uninhabited. To check whether a type is uninhabited at all (not just from a given module), you could check whether the forest is empty.

[query description - consider adding a doc-comment!] fetching what a dependency looks like

Gets the name of the crate.

[query description - consider adding a doc-comment!] collecting child items of module tcx.def_path_str(def_id)

[query description - consider adding a doc-comment!] computing crate imported by tcx.def_path_str(def_id.to_def_id())

[query description - consider adding a doc-comment!] calculating the lib features map

[query description - consider adding a doc-comment!] calculating the lib features defined in a crate

[query description - consider adding a doc-comment!] calculating the implications between #[unstable] features defined in a crate

Whether the function is an intrinsic

Returns the lang items defined in another crate by loading it from metadata.

Returns all diagnostic items defined in all crates.

Returns the lang items defined in another crate by loading it from metadata.

Returns the diagnostic items defined in a crate.

[query description - consider adding a doc-comment!] calculating the missing lang items in a crate

[query description - consider adding a doc-comment!] calculating the visible parent map

[query description - consider adding a doc-comment!] calculating trimmed def paths

[query description - consider adding a doc-comment!] seeing if we’re missing an extern crate item for this crate

[query description - consider adding a doc-comment!] looking at the source for a crate

Returns the debugger visualizers defined for this crate.

[query description - consider adding a doc-comment!] generating a postorder list of CrateNums

Returns whether or not the crate with CrateNum ‘cnum’ is marked as a private dependency

[query description - consider adding a doc-comment!] allocator kind for the current crate

[query description - consider adding a doc-comment!] collecting upvars mentioned in tcx.def_path_str(def_id)

[query description - consider adding a doc-comment!] fetching potentially unused trait imports

[query description - consider adding a doc-comment!] looking up all possibly unused extern crates

[query description - consider adding a doc-comment!] names_imported_by_glob_use for tcx.def_path_str(def_id.to_def_id())

[query description - consider adding a doc-comment!] calculating the stability index for the local crate

[query description - consider adding a doc-comment!] fetching all foreign CrateNum instances

A list of all traits in a crate, used by rustdoc and error reporting. NOTE: Not named just traits due to a naming conflict.

The list of symbols exported from the given crate.

  • All names contained in exported_symbols(cnum) are guaranteed to correspond to a publicly visible symbol in cnum machine code.
  • The exported_symbols sets of different crates do not intersect.

[query description - consider adding a doc-comment!] collect_and_partition_mono_items

[query description - consider adding a doc-comment!] determining whether tcx.def_path_str(def_id) needs codegen

All items participating in code generation together with items inlined into them.

[query description - consider adding a doc-comment!] codegen_unit

[query description - consider adding a doc-comment!] determining which generic parameters are unused by tcx.def_path_str(key.def_id())

[query description - consider adding a doc-comment!] optimization level used by backend

Return the filenames where output artefacts shall be stored.

This query returns an &Arc because codegen backends need the value even after the TyCtxt has been destroyed.

Do not call this query directly: invoke normalize instead.

Do not call this query directly: invoke try_normalize_erasing_regions instead.

Do not call this query directly: invoke try_normalize_erasing_regions instead.

[query description - consider adding a doc-comment!] computing implied outlives bounds for {:?}

Do not call this query directly: invoke DropckOutlives::new(dropped_ty)).fully_perform(typeck.infcx) instead.

Do not call this query directly: invoke infcx.predicate_may_hold() or infcx.predicate_must_hold() instead.

[query description - consider adding a doc-comment!] evaluating trait selection obligation goal.value

Do not call this query directly: part of the Eq type-op

Do not call this query directly: part of the Eq type-op

Do not call this query directly: part of the Subtype type-op

Do not call this query directly: part of the ProvePredicate type-op

Do not call this query directly: part of the Normalize type-op

Do not call this query directly: part of the Normalize type-op

Do not call this query directly: part of the Normalize type-op

Do not call this query directly: part of the Normalize type-op

[query description - consider adding a doc-comment!] impossible substituted predicates: tcx.def_path_str(key.0)

[query description - consider adding a doc-comment!] checking if tcx.def_path_str(key.1) is impossible to call within tcx.def_path_str(key.0)

[query description - consider adding a doc-comment!] computing autoderef types for {:?}

[query description - consider adding a doc-comment!] looking up supported target features

Get an estimate of the size of an InstanceDef based on its MIR for CGU partitioning.

[query description - consider adding a doc-comment!] looking up enabled feature gates

Attempt to resolve the given DefId to an Instance, for the given generics args (SubstsRef), returning one of:

  • Ok(Some(instance)) on success
  • Ok(None) when the SubstsRef are still too generic, and therefore don’t allow finding the final Instance
  • Err(ErrorGuaranteed) when the Instance resolution process couldn’t complete due to errors elsewhere - this is distinct from Ok(None) to avoid misleading diagnostics when an error has already been/will be emitted, for the original cause

[query description - consider adding a doc-comment!] resolving instance of the const argument ty :: Instance :: new(key.value.0.to_def_id(), key.value.2)

[query description - consider adding a doc-comment!] normalizing opaque types in {:?}

Checks whether a type is definitely uninhabited. This is conservative: for some types that are uninhabited we return false, but we only return true for types that are definitely uninhabited. ty.conservative_is_privately_uninhabited implies that any value of type ty will be Abi::Uninhabited. (Note that uninhabited types may have nonzero size, to account for partial initialisation. See #49298 for details.)

[query description - consider adding a doc-comment!] looking up limits

Performs an HIR-based well-formed check on the item with the given HirId. If we get an Unimplemented error that matches the provided Predicate, return the cause of the newly created obligation.

This is only used by error-reporting code to get a better cause (in particular, a better span) for an existing error. Therefore, it is best-effort, and may never handle all of the cases that the normal ty::Ty-based wfcheck does. This is fine, because the ty::Ty-based wfcheck is always run.

The list of backend features computed from CLI flags (-Ctarget-cpu, -Ctarget-feature, --target and similar).

[query description - consider adding a doc-comment!] looking up generator diagnostic data of tcx.def_path_str(key)

[query description - consider adding a doc-comment!] checking to see if {:?} permits being left uninit

[query description - consider adding a doc-comment!] checking to see if {:?} permits being left zeroed

Iterate over every impl that could possibly match the self type self_ty.

Applies function to every impl that could possibly match the self type self_ty and returns the first non-none value.

Returns an iterator containing all impls

Creates a hash of the type Ty which will be the same no matter what crate context it’s calculated within. This is used by the type_id intrinsic.

Attempts to returns the deeply last field of nested structures, but does not apply any normalization in its search. Returns the same type if input ty is not a structure at all.

Returns the deeply last field of nested structures, or the same type if not a structure at all. Corresponds to the only possible unsized field, and its type can be used to determine unsizing strategy.

Should only be called if ty has no inference variables and does not need its lifetimes preserved (e.g. as part of codegen); otherwise normalization attempt may cause compiler bugs.

Returns the deeply last field of nested structures, or the same type if not a structure at all. Corresponds to the only possible unsized field, and its type can be used to determine unsizing strategy.

This is parameterized over the normalization strategy (i.e. how to handle <T as Trait>::Assoc and impl Trait); pass the identity function to indicate no normalization should take place.

See also struct_tail_erasing_lifetimes, which is suitable for use during codegen.

Same as applying struct_tail on source and target, but only keeps going as long as the two types are instances of the same structure definitions. For (Foo<Foo<T>>, Foo<dyn Trait>), the result will be (Foo<T>, Trait), whereas struct_tail produces T, and Trait, respectively.

Should only be called if the types have no inference variables and do not need their lifetimes preserved (e.g., as part of codegen); otherwise, normalization attempt may cause compiler bugs.

Same as applying struct_tail on source and target, but only keeps going as long as the two types are instances of the same structure definitions. For (Foo<Foo<T>>, Foo<dyn Trait>), the result will be (Foo<T>, Trait), whereas struct_tail produces T, and Trait, respectively.

See also struct_lockstep_tails_erasing_lifetimes, which is suitable for use during codegen.

Calculate the destructor of a given type.

Returns the set of types that are required to be alive in order to run the destructor of def (see RFCs 769 and 1238).

Note that this returns only the constraints for the destructor of def itself. For the destructors of the contents, you need adt_dtorck_constraint.

Checks whether each generic argument is simply a unique generic parameter.

Returns true if def_id refers to a closure (e.g., |x| x * 2). Note that closures have a DefId, but the closure expression also has a HirId that is located within the context where the closure appears (and, sadly, a corresponding NodeId, since those are not yet phased out). The parent of the closure’s DefId will also be the context where it appears.

Returns true if def_id refers to a definition that does not have its own type-checking context, i.e. closure, generator or inline const.

Returns true if def_id refers to a trait (i.e., trait Foo { ... }).

Returns true if def_id refers to a trait alias (i.e., trait Foo = ...;), and false otherwise.

Returns true if this DefId refers to the implicit constructor for a tuple struct like struct Foo(u32), and false otherwise.

Given the DefId, returns the DefId of the innermost item that has its own type-checking context or “inference environment”.

For example, a closure has its own DefId, but it is type-checked with the containing item. Similarly, an inline const block has its own DefId but it is type-checked together with the containing item.

Therefore, when we fetch the typeck the closure, for example, we really wind up fetching the typeck the enclosing fn item.

Given the DefId and substs a closure, creates the type of self argument that the closure expects. For example, for a Fn closure, this would return a reference type &T where T = closure_ty.

Returns None if this closure’s kind has not yet been inferred. This should only be possible during type checking.

Note that the return value is a late-bound region and hence wrapped in a binder.

Returns true if the node pointed to by def_id is a static item.

Returns true if this is a static item with the #[thread_local] attribute.

Returns true if the node pointed to by def_id is a mutable static item.

Get the type of the pointer to the static that we use in MIR.

Expands the given impl trait type, stopping if the type is recursive.

Invoke callback on every region appearing free in value.

Returns true if callback returns true for every region appearing free in value.

Returns true if callback returns true for some region appearing free in value.

Returns a set of all late-bound regions that are constrained by value, meaning that if we instantiate those LBR with variables and equate value with something else, those variables will also be equated.

Returns a set of all late-bound regions that appear in value anywhere.

Expects a body and returns its codegen attributes.

Unlike codegen_fn_attrs, this returns CodegenFnAttrs::EMPTY for constants.

Allocates a read-only byte or string literal for mir::interpret.

Returns a range of the start/end indices specified with the rustc_layout_scalar_valid_range attribute.

Creates a type context and call the closure with a TyCtxt reference to the context. The closure enforces that the type context and any interned value (types, substs, etc.) can only be used while ty::tls has a valid reference to the context, to allow formatting values that need it.

Constructs a TyKind::Error type and registers a delay_span_bug to ensure it gets used.

Constructs a TyKind::Error type and registers a delay_span_bug with the given msg to ensure it gets used.

Like TyCtxt::ty_error but for constants.

Like TyCtxt::ty_error_with_message but for constants.

Obtain all lang items of this crate and all dependencies (recursively)

Obtain the given diagnostic item’s DefId. Use is_diagnostic_item if you just want to compare against another DefId, since is_diagnostic_item is cheaper.

Obtain the diagnostic item’s name

Check whether the diagnostic item with the given name has the given DefId.

Converts a DefId into its fully expanded DefPath (every DefId is really just an interned DefPath).

Note that if id is not local to this crate, the result will be a non-local DefPath.

Maps a StableCrateId to the corresponding CrateNum. This method assumes that the crate in question has already been loaded by the CrateStore.

Converts a DefPathHash to its corresponding DefId in the current compilation session, if it still exists. This is used during incremental compilation to turn a deserialized DefPathHash into its current DefId.

Create a new definition within the incr. comp. engine.

Note that this is untracked and should only be used within the query system if the result is otherwise tracked through queries

Note that this is untracked and should only be used within the query system if the result is otherwise tracked through queries

Note that this is untracked and should only be used within the query system if the result is otherwise tracked through queries

If true, we should use lazy normalization for constants, otherwise we still evaluate them eagerly.

Returns the DefId and the BoundRegionKind corresponding to the given region.

Given a DefId for an fn, return all the dyn and impl traits in its return type.

Determines whether identifiers in the assembly have strict naming rules. Currently, only NVPTX* targets need it.

Returns &'static core::panic::Location<'static>.

Returns a displayable description and article for the given def_id (e.g. ("a", "struct")).

Given a fn type, returns an equivalent unsafe fn type; that is, a fn type that is equivalent in every way for being unsafe.

Given the def_id of a Trait trait_def_id and the name of an associated item assoc_name returns true if the trait_def_id defines an associated item of name assoc_name.

Given a ty, return whether it’s an impl Future<...>.

Computes the def-ids of the transitive supertraits of trait_def_id. This (intentionally) does not compute the full elaborated super-predicates but just the set of def-ids. It is used to identify which traits may define a given associated type to help avoid cycle errors. Returns a DefId iterator.

Given a closure signature, returns an equivalent fn signature. Detuples and so forth – so e.g., if we have a sig with Fn<(u32, i32)> then you would get a fn(u32, i32). unsafety determines the unsafety of the fn signature. If you pass hir::Unsafety::Unsafe in the previous example, then you would get an unsafe fn (u32, i32). It cannot convert a closure that requires unsafe.

Same a self.mk_region(kind), but avoids accessing the interners if *r == kind.

This method copies Place’s projection, add an element and reintern it. Should not be used to build a full Place it’s just a convenient way to grab a projection and modify it in flight.

Emit a lint at span from a lint struct (some type that implements DecorateLint, typically generated by #[derive(LintDiagnostic)]).

Emit a lint from a lint struct (some type that implements DecorateLint, typically generated by #[derive(LintDiagnostic)]).

Whether the def_id counts as const fn in the current crate, considering all active feature gates

Whether the trait impl is marked const. This does not consider stability or feature gates.

Returns an equivalent value with all free regions removed (note that late-bound regions remain, because they are important for subtyping, but they are anonymized and normalized as well)..

A “bool” type used in rustc_mir_transform unit tests when we have not spun up a TyCtxt.

Look up the name of a definition across crates. This does not look at HIR.

Look up the name of a definition across crates. This does not look at HIR.

This method will ICE if the corresponding item does not have a name. In these cases, use opt_item_name instead.

Look up the name and span of a definition.

See item_name for more information.

Returns true if the impls are the same polarity and the trait either has no items or is annotated #[marker] and prevents item overrides.

Returns ty::VariantDef if res refers to a struct, or variant or their constructors, panics otherwise.

Returns the possibly-auto-generated MIR of a (DefId, Subst) pair.

Gets all attributes with the given name.

Determines whether an item is annotated with an attribute.

Returns true if this is an auto trait.

Returns layout of a generator. Layout might be unavailable if the generator is tainted by errors.

Given the DefId of an impl, returns the DefId of the trait it implements. If it implements no trait, returns None.

If the given DefId describes an item belonging to a trait, returns the DefId of the trait that the trait item belongs to; otherwise, returns None.

If the given DefId describes a method belonging to an impl, returns the DefId of the impl that the method belongs to; otherwise, returns None.

If the given DefId belongs to a trait that was automatically derived, returns true.

Looks up the span of impl_did if the impl is local; otherwise returns Err with the name of the crate containing the impl.

Hygienically compares a use-site name (use_name) for a field or an associated item with its supposed definition name (def_name). The method also needs DefId of the supposed definition’s parent/scope to perform comparison.

Returns true if the debuginfo for span should be collapsed to the outermost expansion site. Only applies when Span is the result of macro expansion.

  • If the collapse_debuginfo feature is enabled then debuginfo is not collapsed by default and only when a macro definition is annotated with #[collapse_debuginfo].
  • If collapse_debuginfo is not enabled, then debuginfo is collapsed by default.

When -Zdebug-macros is provided then debuginfo will never be collapsed.

Trait Implementations

Returns a copy of the value. Read more
Performs copy-assignment from source. Read more
Create a hashing context for hashing new results.
Access the DepGraph.
Access the profiler.
Access the compiler session.
Return whether this kind always require evaluation.
Try to force a dep node to execute and see if it’s green.
Load data from the on-disk cache.
This method turns the parameters of a DepNodeConstructor into an opaque Fingerprint to be used in DepNode. Not all DepNodeParams support being turned into a Fingerprint (they don’t need to if the corresponding DepNode is anonymous). Read more
This method tries to recover the query key from the given DepNode, something which is needed when forcing DepNodes during red-green evaluation. The query system will only call this method if fingerprint_style() is not FingerprintStyle::Opaque. It is always valid to return None here, in which case incremental compilation will treat the query as having changed instead of forcing it. Read more
This method turns the parameters of a DepNodeConstructor into an opaque Fingerprint to be used in DepNode. Not all DepNodeParams support being turned into a Fingerprint (they don’t need to if the corresponding DepNode is anonymous). Read more
This method tries to recover the query key from the given DepNode, something which is needed when forcing DepNodes during red-green evaluation. The query system will only call this method if fingerprint_style() is not FingerprintStyle::Opaque. It is always valid to return None here, in which case incremental compilation will treat the query as having changed instead of forcing it. Read more
This method turns the parameters of a DepNodeConstructor into an opaque Fingerprint to be used in DepNode. Not all DepNodeParams support being turned into a Fingerprint (they don’t need to if the corresponding DepNode is anonymous). Read more
This method tries to recover the query key from the given DepNode, something which is needed when forcing DepNodes during red-green evaluation. The query system will only call this method if fingerprint_style() is not FingerprintStyle::Opaque. It is always valid to return None here, in which case incremental compilation will treat the query as having changed instead of forcing it. Read more
This method turns the parameters of a DepNodeConstructor into an opaque Fingerprint to be used in DepNode. Not all DepNodeParams support being turned into a Fingerprint (they don’t need to if the corresponding DepNode is anonymous). Read more
This method tries to recover the query key from the given DepNode, something which is needed when forcing DepNodes during red-green evaluation. The query system will only call this method if fingerprint_style() is not FingerprintStyle::Opaque. It is always valid to return None here, in which case incremental compilation will treat the query as having changed instead of forcing it. Read more
This method turns the parameters of a DepNodeConstructor into an opaque Fingerprint to be used in DepNode. Not all DepNodeParams support being turned into a Fingerprint (they don’t need to if the corresponding DepNode is anonymous). Read more
This method tries to recover the query key from the given DepNode, something which is needed when forcing DepNodes during red-green evaluation. The query system will only call this method if fingerprint_style() is not FingerprintStyle::Opaque. It is always valid to return None here, in which case incremental compilation will treat the query as having changed instead of forcing it. Read more
This method turns the parameters of a DepNodeConstructor into an opaque Fingerprint to be used in DepNode. Not all DepNodeParams support being turned into a Fingerprint (they don’t need to if the corresponding DepNode is anonymous). Read more
This method tries to recover the query key from the given DepNode, something which is needed when forcing DepNodes during red-green evaluation. The query system will only call this method if fingerprint_style() is not FingerprintStyle::Opaque. It is always valid to return None here, in which case incremental compilation will treat the query as having changed instead of forcing it. Read more
The resulting type after dereferencing.
Dereferences the value.

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.

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

The resulting type after obtaining ownership.
Creates owned data from borrowed data, usually by cloning. Read more
Uses borrowed data to replace owned data, usually by cloning. Read more
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.

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