Struct rustc_middle::ty::context::tls::ImplicitCtxt
source · pub struct ImplicitCtxt<'a, 'tcx> {
pub tcx: TyCtxt<'tcx>,
pub query: Option<QueryJobId>,
pub diagnostics: Option<&'a Lock<ThinVec<Diagnostic>>>,
pub query_depth: usize,
pub task_deps: TaskDepsRef<'a>,
}Expand description
This is the implicit state of rustc. It contains the current
TyCtxt and query. It is updated when creating a local interner or
executing a new query. Whenever there’s a TyCtxt value available
you should also have access to an ImplicitCtxt through the functions
in this module.
Fields§
§tcx: TyCtxt<'tcx>The current TyCtxt.
query: Option<QueryJobId>The current query job, if any. This is updated by JobOwner::start in
ty::query::plumbing when executing a query.
diagnostics: Option<&'a Lock<ThinVec<Diagnostic>>>Where to store diagnostics for the current query job, if any.
This is updated by JobOwner::start in ty::query::plumbing when executing a query.
query_depth: usizeUsed to prevent queries from calling too deeply.
task_deps: TaskDepsRef<'a>The current dep graph task. This is used to add dependencies to queries when executing them.
Implementations§
source§impl<'a, 'tcx> ImplicitCtxt<'a, 'tcx>
impl<'a, 'tcx> ImplicitCtxt<'a, 'tcx>
pub fn new(gcx: &'tcx GlobalCtxt<'tcx>) -> Self
Trait Implementations§
source§impl<'a, 'tcx> Clone for ImplicitCtxt<'a, 'tcx>
impl<'a, 'tcx> Clone for ImplicitCtxt<'a, 'tcx>
source§fn clone(&self) -> ImplicitCtxt<'a, 'tcx>
fn clone(&self) -> ImplicitCtxt<'a, 'tcx>
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source. Read moreAuto Trait Implementations§
impl<'a, 'tcx> !RefUnwindSafe for ImplicitCtxt<'a, 'tcx>
impl<'a, 'tcx> !Send for ImplicitCtxt<'a, 'tcx>
impl<'a, 'tcx> !Sync for ImplicitCtxt<'a, 'tcx>
impl<'a, 'tcx> Unpin for ImplicitCtxt<'a, 'tcx>
impl<'a, 'tcx> !UnwindSafe for ImplicitCtxt<'a, 'tcx>
Blanket Implementations§
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, R> CollectAndApply<T, R> for T
impl<T, R> CollectAndApply<T, R> for T
source§impl<P> IntoQueryParam<P> for P
impl<P> IntoQueryParam<P> for P
fn into_query_param(self) -> P
source§impl<T> MaybeResult<T> for T
impl<T> MaybeResult<T> for T
source§impl<'tcx, T> ToPredicate<'tcx, T> for T
impl<'tcx, T> ToPredicate<'tcx, T> for T
fn to_predicate(self, _tcx: TyCtxt<'tcx>) -> T
source§impl<Tcx, T> Value<Tcx> for Twhere
Tcx: DepContext,
impl<Tcx, T> Value<Tcx> for Twhere Tcx: DepContext,
default fn from_cycle_error( tcx: Tcx, cycle: &[QueryInfo], _guar: ErrorGuaranteed ) -> T
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: 48 bytes