Home
last modified time | relevance | path

Searched defs:ThreadIntent (Results 1 – 6 of 6) sorted by relevance

/third_party/rust/rust/src/tools/rust-analyzer/crates/stdx/src/thread/
Dintent.rs5 pub enum ThreadIntent { enum
15 impl ThreadIntent { impl
Dpool.rs74 pub fn spawn<F>(&self, intent: ThreadIntent, f: F) in spawn()
/third_party/rust/rust/src/tools/rust-analyzer/crates/rust-analyzer/src/
Dtask_pool.rs17 pub(crate) fn spawn<F>(&mut self, intent: ThreadIntent, task: F) in spawn()
28 pub(crate) fn spawn_with_sender<F>(&mut self, intent: ThreadIntent, task: F) in spawn_with_sender()
Ddispatch.rs183 intent: ThreadIntent, in on_with_thread_intent()
/third_party/rust/rust/src/tools/rust-analyzer/crates/rust-analyzer/src/bin/
Dmain.rs148 thread_intent: stdx::thread::ThreadIntent, in with_extra_thread()
/third_party/rust/rust/src/tools/rust-analyzer/crates/stdx/src/
Dthread.rs26 pub fn spawn<F, T>(intent: ThreadIntent, f: F) -> JoinHandle<T> in spawn() argument