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
sourceimpl<'a, 'tcx> ImplicitCtxt<'a, 'tcx>
impl<'a, 'tcx> ImplicitCtxt<'a, 'tcx>
pub fn new(gcx: &'tcx GlobalCtxt<'tcx>) -> Self
Trait Implementations
sourceimpl<'a, 'tcx> Clone for ImplicitCtxt<'a, 'tcx>
impl<'a, 'tcx> Clone for ImplicitCtxt<'a, 'tcx>
sourcefn clone(&self) -> ImplicitCtxt<'a, 'tcx>
fn clone(&self) -> ImplicitCtxt<'a, 'tcx>
1.0.0 · sourcefn 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
sourceimpl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
sourceimpl<T, R> InternIteratorElement<T, R> for T
impl<T, R> InternIteratorElement<T, R> for T
type Output = R
fn intern_with<I, F>(iter: I, f: F) -> <T as InternIteratorElement<T, R>>::Outputwhere
I: Iterator<Item = T>,
F: FnOnce(&[T]) -> R,
sourceimpl<T> MaybeResult<T> for T
impl<T> MaybeResult<T> for T
sourceimpl<CTX, T> Value<CTX> for Twhere
CTX: DepContext,
impl<CTX, T> Value<CTX> for Twhere
CTX: DepContext,
default fn from_cycle_error(tcx: CTX) -> T
impl<'a, T> Captures<'a> for Twhere
T: ?Sized,
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