Home
last modified time | relevance | path

Searched defs:LocalKey (Results 1 – 3 of 3) sorted by relevance

/third_party/rust/rust/library/std/src/thread/
Dlocal.rs100 pub struct LocalKey<T: 'static> { struct
119 impl<T: 'static> fmt::Debug for LocalKey<T> { argument
217 impl<T: 'static> LocalKey<T> { impl
301 impl<T: 'static> LocalKey<Cell<T>> { impl
431 impl<T: 'static> LocalKey<RefCell<T>> { impl
/third_party/rust/rust/compiler/rustc_middle/src/query/
Dkeys.rs51 type LocalKey; typedef
55 fn as_local_key(&self) -> Option<Self::LocalKey>; in as_local_key()
75 type LocalKey = Self; typedef
78 fn as_local_key(&self) -> Option<Self::LocalKey> { in as_local_key()
124 type LocalKey = LocalCrate; typedef
127 fn as_local_key(&self) -> Option<Self::LocalKey> { in as_local_key()
170 type LocalKey = LocalDefId; typedef
173 fn as_local_key(&self) -> Option<Self::LocalKey> { in as_local_key()
256 type LocalKey = DefId; typedef
259 fn as_local_key(&self) -> Option<Self::LocalKey> { in as_local_key()
[all …]
/third_party/rust/rust/src/tools/rust-analyzer/crates/proc-macro-srv/src/server/
Dsymbol.rs14 pub(crate) type SymbolInternerRef = &'static LocalKey<RefCell<SymbolInterner>>; variable