Searched defs:JoinError (Results 1 – 4 of 4) sorted by relevance
| /external/rust/crates/tokio/src/runtime/task/ |
| D | error.rs | 20 impl JoinError { impl 21 pub(crate) fn cancelled(id: Id) -> JoinError { in cancelled() 28 pub(crate) fn panic(id: Id, err: Box<dyn Any + Send + 'static>) -> JoinError { in panic() 112 pub fn try_into_panic(self) -> Result<Box<dyn Any + Send + 'static>, JoinError> { in try_into_panic() argument 135 impl fmt::Display for JoinError { implementation 144 impl fmt::Debug for JoinError { implementation 153 impl std::error::Error for JoinError {} implementation
|
| /external/crosvm/base/src/sys/windows/ |
| D | thread.rs | 37 pub enum JoinError { enum 44 pub fn try_join(self, timeout: Duration) -> Result<T, JoinError> { in try_join() argument
|
| /external/rust/crates/tokio/src/task/ |
| D | join_set.rs | 222 pub async fn join_next(&mut self) -> Option<Result<T, JoinError>> { in join_next() argument 244 pub async fn join_next_with_id(&mut self) -> Option<Result<(Id, T), JoinError>> { in join_next_with_id() argument 304 fn poll_join_next(&mut self, cx: &mut Context<'_>) -> Poll<Option<Result<T, JoinError>>> { in poll_join_next() argument 364 ) -> Poll<Option<Result<(Id, T), JoinError>>> { in poll_join_next_with_id() argument
|
| /external/rust/crates/tokio-util/src/task/ |
| D | join_map.rs | 416 pub async fn join_next(&mut self) -> Option<(K, Result<V, JoinError>)> { in join_next() argument
|