Home
last modified time | relevance | path

Searched defs:FutureObj (Results 1 – 2 of 2) sorted by relevance

/external/rust/crates/futures-task/src/
Dfuture_obj.rs108 pub struct FutureObj<'a, T>(LocalFutureObj<'a, T>); struct
110 impl<T> Unpin for FutureObj<'_, T> {} implementation
111 unsafe impl<T> Send for FutureObj<'_, T> {} implementation
113 impl<'a, T> FutureObj<'a, T> { impl
121 impl<T> fmt::Debug for FutureObj<'_, T> { implementation
128 impl<T> Future for FutureObj<'_, T> { implementation
297 impl<'a, F: Future<Output = ()> + Send + 'a> From<Box<F>> for FutureObj<'a, ()> { implementation
303 impl<'a> From<Box<dyn Future<Output = ()> + Send + 'a>> for FutureObj<'a, ()> { implementation
309 impl<'a, F: Future<Output = ()> + Send + 'a> From<Pin<Box<F>>> for FutureObj<'a, ()> { implementation
315 impl<'a> From<Pin<Box<dyn Future<Output = ()> + Send + 'a>>> for FutureObj<'a, ()> { implementation
/external/python/cpython3/Modules/
D_asynciomodule.c79 } FutureObj; typedef