pub struct TyCtxtEnsureResult<'tcx> {
pub tcx: TyCtxt<'tcx>,
}Fields§
§tcx: TyCtxt<'tcx>Implementations§
Source§impl<'tcx> TyCtxtEnsureResult<'tcx>
impl<'tcx> TyCtxtEnsureResult<'tcx>
Sourcepub fn collect_return_position_impl_trait_in_trait_tys(
self,
key: impl IntoQueryKey<DefId>,
) -> Result<(), ErrorGuaranteed>
pub fn collect_return_position_impl_trait_in_trait_tys( self, key: impl IntoQueryKey<DefId>, ) -> Result<(), ErrorGuaranteed>
[query description - consider adding a doc-comment!] comparing an impl and trait method signature, inferring any hidden impl Trait types in the process
Sourcepub fn thir_body(
self,
key: impl IntoQueryKey<LocalDefId>,
) -> Result<(), ErrorGuaranteed>
pub fn thir_body( self, key: impl IntoQueryKey<LocalDefId>, ) -> Result<(), ErrorGuaranteed>
Fetch the THIR for a given body. The THIR body gets stolen by unsafety checking unless
-Zno-steal-thir is on.
Sourcepub fn thir_abstract_const(
self,
key: impl IntoQueryKey<DefId>,
) -> Result<(), ErrorGuaranteed>
pub fn thir_abstract_const( self, key: impl IntoQueryKey<DefId>, ) -> Result<(), ErrorGuaranteed>
Try to build an abstract representation of the given constant.
Sourcepub fn check_coroutine_obligations(
self,
key: impl IntoQueryKey<LocalDefId>,
) -> Result<(), ErrorGuaranteed>
pub fn check_coroutine_obligations( self, key: impl IntoQueryKey<LocalDefId>, ) -> Result<(), ErrorGuaranteed>
[query description - consider adding a doc-comment!] verify auto trait bounds for coroutine interior type tcx.def_path_str(key)
Sourcepub fn check_potentially_region_dependent_goals(
self,
key: impl IntoQueryKey<LocalDefId>,
) -> Result<(), ErrorGuaranteed>
pub fn check_potentially_region_dependent_goals( self, key: impl IntoQueryKey<LocalDefId>, ) -> Result<(), ErrorGuaranteed>
Used in case mir_borrowck fails to prove an obligation. We generally assume that
all goals we prove in MIR type check hold as we’ve already checked them in HIR typeck.
However, we replace each free region in the MIR body with a unique region inference
variable. As we may rely on structural identity when proving goals this may cause a
goal to no longer hold. We store obligations for which this may happen during HIR
typeck in the TypeckResults. We then uniquify and reprove them in case MIR typeck
encounters an unexpected error. We expect this to result in an error when used and
delay a bug if it does not.
Sourcepub fn check_tail_calls(
self,
key: impl IntoQueryKey<LocalDefId>,
) -> Result<(), ErrorGuaranteed>
pub fn check_tail_calls( self, key: impl IntoQueryKey<LocalDefId>, ) -> Result<(), ErrorGuaranteed>
Checks well-formedness of tail calls (become f()).
Sourcepub fn check_type_wf(self, key: ()) -> Result<(), ErrorGuaranteed>
pub fn check_type_wf(self, key: ()) -> Result<(), ErrorGuaranteed>
[query description - consider adding a doc-comment!] checking that types are well-formed
Sourcepub fn coerce_unsized_info(
self,
key: impl IntoQueryKey<DefId>,
) -> Result<(), ErrorGuaranteed>
pub fn coerce_unsized_info( self, key: impl IntoQueryKey<DefId>, ) -> Result<(), ErrorGuaranteed>
Caches CoerceUnsized kinds for impls on custom types.
Sourcepub fn coherent_trait(
self,
key: impl IntoQueryKey<DefId>,
) -> Result<(), ErrorGuaranteed>
pub fn coherent_trait( self, key: impl IntoQueryKey<DefId>, ) -> Result<(), ErrorGuaranteed>
[query description - consider adding a doc-comment!] coherence checking all impls of trait tcx.def_path_str(def_id)
Sourcepub fn mir_borrowck(
self,
key: impl IntoQueryKey<LocalDefId>,
) -> Result<(), ErrorGuaranteed>
pub fn mir_borrowck( self, key: impl IntoQueryKey<LocalDefId>, ) -> Result<(), ErrorGuaranteed>
Borrow-checks the given typeck root, e.g. functions, const/static items, and its children, e.g. closures, inline consts.
Sourcepub fn crate_inherent_impls_validity_check(
self,
key: (),
) -> Result<(), ErrorGuaranteed>
pub fn crate_inherent_impls_validity_check( self, key: (), ) -> Result<(), ErrorGuaranteed>
Checks all types in the crate for overlap in their inherent impls. Reports errors.
Not meant to be used directly outside of coherence.
Sourcepub fn crate_inherent_impls_overlap_check(
self,
key: (),
) -> Result<(), ErrorGuaranteed>
pub fn crate_inherent_impls_overlap_check( self, key: (), ) -> Result<(), ErrorGuaranteed>
Checks all types in the crate for overlap in their inherent impls. Reports errors.
Not meant to be used directly outside of coherence.
Sourcepub fn orphan_check_impl(
self,
key: impl IntoQueryKey<LocalDefId>,
) -> Result<(), ErrorGuaranteed>
pub fn orphan_check_impl( self, key: impl IntoQueryKey<LocalDefId>, ) -> Result<(), ErrorGuaranteed>
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.
Sourcepub fn check_match(
self,
key: impl IntoQueryKey<LocalDefId>,
) -> Result<(), ErrorGuaranteed>
pub fn check_match( self, key: impl IntoQueryKey<LocalDefId>, ) -> Result<(), ErrorGuaranteed>
[query description - consider adding a doc-comment!] match-checking tcx.def_path_str(key)
Sourcepub fn specialization_graph_of(
self,
key: impl IntoQueryKey<DefId>,
) -> Result<(), ErrorGuaranteed>
pub fn specialization_graph_of( self, key: impl IntoQueryKey<DefId>, ) -> Result<(), ErrorGuaranteed>
[query description - consider adding a doc-comment!] building specialization graph of trait tcx.def_path_str(trait_id)
Sourcepub fn check_well_formed(
self,
key: impl IntoQueryKey<LocalDefId>,
) -> Result<(), ErrorGuaranteed>
pub fn check_well_formed( self, key: impl IntoQueryKey<LocalDefId>, ) -> Result<(), ErrorGuaranteed>
[query description - consider adding a doc-comment!] checking that tcx.def_path_str(key) is well-formed
Sourcepub fn enforce_impl_non_lifetime_params_are_constrained(
self,
key: impl IntoQueryKey<LocalDefId>,
) -> Result<(), ErrorGuaranteed>
pub fn enforce_impl_non_lifetime_params_are_constrained( self, key: impl IntoQueryKey<LocalDefId>, ) -> Result<(), ErrorGuaranteed>
[query description - consider adding a doc-comment!] checking that tcx.def_path_str(key) ’s generics are constrained by the impl header
Sourcepub fn resolve_instance_raw(
self,
key: PseudoCanonicalInput<'tcx, (DefId, GenericArgsRef<'tcx>)>,
) -> Result<(), ErrorGuaranteed>
pub fn resolve_instance_raw( self, key: PseudoCanonicalInput<'tcx, (DefId, GenericArgsRef<'tcx>)>, ) -> Result<(), ErrorGuaranteed>
Attempt to resolve the given DefId to an Instance, for the
given generics args (GenericArgsRef), returning one of:
Ok(Some(instance))on successOk(None)when theGenericArgsRefare still too generic, and therefore don’t allow finding the finalInstanceErr(ErrorGuaranteed)when theInstanceresolution process couldn’t complete due to errors elsewhere - this is distinct fromOk(None)to avoid misleading diagnostics when an error has already been/will be emitted, for the original cause.
Sourcepub fn compare_impl_item(
self,
key: impl IntoQueryKey<LocalDefId>,
) -> Result<(), ErrorGuaranteed>
pub fn compare_impl_item( self, key: impl IntoQueryKey<LocalDefId>, ) -> Result<(), ErrorGuaranteed>
This takes the def-id of an associated item from a impl of a trait, and checks its validity against the trait item it corresponds to.
Any other def id will ICE.
Trait Implementations§
Source§impl<'tcx> Clone for TyCtxtEnsureResult<'tcx>
impl<'tcx> Clone for TyCtxtEnsureResult<'tcx>
Source§fn clone(&self) -> TyCtxtEnsureResult<'tcx>
fn clone(&self) -> TyCtxtEnsureResult<'tcx>
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source. Read moreimpl<'tcx> Copy for TyCtxtEnsureResult<'tcx>
Auto Trait Implementations§
impl<'tcx> DynSend for TyCtxtEnsureResult<'tcx>
impl<'tcx> DynSync for TyCtxtEnsureResult<'tcx>
impl<'tcx> Freeze for TyCtxtEnsureResult<'tcx>
impl<'tcx> !RefUnwindSafe for TyCtxtEnsureResult<'tcx>
impl<'tcx> !Send for TyCtxtEnsureResult<'tcx>
impl<'tcx> !Sync for TyCtxtEnsureResult<'tcx>
impl<'tcx> Unpin for TyCtxtEnsureResult<'tcx>
impl<'tcx> UnsafeUnpin for TyCtxtEnsureResult<'tcx>
impl<'tcx> !UnwindSafe for TyCtxtEnsureResult<'tcx>
Blanket Implementations§
Source§impl<'tcx, T> ArenaAllocatable<'tcx, IsCopy> for Twhere
T: Copy,
impl<'tcx, T> ArenaAllocatable<'tcx, IsCopy> for Twhere
T: Copy,
fn allocate_on(self, arena: &'tcx Arena<'tcx>) -> &'tcx mut T
fn allocate_from_iter( arena: &'tcx Arena<'tcx>, iter: impl IntoIterator<Item = T>, ) -> &'tcx mut [T]
Source§impl<'tcx, T> ArenaAllocatable<'tcx, IsCopy> for Twhere
T: Copy,
impl<'tcx, T> ArenaAllocatable<'tcx, IsCopy> for Twhere
T: Copy,
fn allocate_on(self, arena: &'tcx Arena<'tcx>) -> &'tcx mut T
fn allocate_from_iter( arena: &'tcx Arena<'tcx>, iter: impl IntoIterator<Item = T>, ) -> &'tcx mut [T]
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<T, R> CollectAndApply<T, R> for T
impl<T, R> CollectAndApply<T, R> for T
Source§impl<T> Instrument for T
impl<T> Instrument for T
Source§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
Source§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
self into a Left variant of Either<Self, Self>
if into_left is true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
self into a Left variant of Either<Self, Self>
if into_left(&self) returns true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moreSource§impl<K> IntoQueryKey<K> for K
impl<K> IntoQueryKey<K> for K
Source§fn into_query_key(self) -> K
fn into_query_key(self) -> K
Self to K.
This should always be a very cheap conversion, e.g. LocalDefId::to_def_id.Source§impl<T> MaybeResult<T> for T
impl<T> MaybeResult<T> for T
Source§impl<T> Pointable for T
impl<T> Pointable for T
Source§impl<I, T, U> Upcast<I, U> for Twhere
U: UpcastFrom<I, T>,
impl<I, T, U> Upcast<I, U> for Twhere
U: UpcastFrom<I, T>,
Source§impl<I, T> UpcastFrom<I, T> for T
impl<I, T> UpcastFrom<I, T> for T
fn upcast_from(from: T, _tcx: I) -> T
Source§impl<T> WithSubscriber for T
impl<T> WithSubscriber for T
Source§fn with_subscriber<S>(self, subscriber: S) -> WithDispatch<Self>
fn with_subscriber<S>(self, subscriber: S) -> WithDispatch<Self>
Source§fn with_current_subscriber(self) -> WithDispatch<Self>
fn with_current_subscriber(self) -> WithDispatch<Self>
impl<T> ErasedDestructor for Twhere
T: 'static,
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