Enum rustc::ty::maps::job::QueryResult[][src]

enum QueryResult<'tcx> {
    Started(Lrc<QueryJob<'tcx>>),
    Poisoned,
}
🔬 This is a nightly-only experimental API. (rustc_private)

this crate is being loaded from the sysroot, an unstable location; did you mean to load this crate from crates.io via Cargo.toml instead?

Indicates the state of a query for a given key in a query map

Variants

🔬 This is a nightly-only experimental API. (rustc_private)

this crate is being loaded from the sysroot, an unstable location; did you mean to load this crate from crates.io via Cargo.toml instead?

An already executing query. The query job can be used to await for its completion

🔬 This is a nightly-only experimental API. (rustc_private)

this crate is being loaded from the sysroot, an unstable location; did you mean to load this crate from crates.io via Cargo.toml instead?

The query panicked. Queries trying to wait on this will raise a fatal error / silently panic

Auto Trait Implementations

impl<'tcx> !Send for QueryResult<'tcx>

impl<'tcx> !Sync for QueryResult<'tcx>