Struct rustc_middle::ty::tls::ImplicitCtxt [−][src]
pub struct ImplicitCtxt<'a, 'tcx> {
pub tcx: TyCtxt<'tcx>,
pub query: Option<QueryJobId<DepKind>>,
pub diagnostics: Option<&'a Lock<ThinVec<Diagnostic>>>,
pub layout_depth: usize,
pub task_deps: Option<&'a Lock<TaskDeps>>,
}
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<DepKind>>
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.
layout_depth: usize
Used to prevent layout from recursing too deeply.
task_deps: Option<&'a Lock<TaskDeps>>
The current dep graph task. This is used to add dependencies to queries when executing them.
Implementations
Trait Implementations
Auto 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
Mutably borrows from an owned value. Read more
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: 40 bytes