devela/work/future/
ext.rs
1#[cfg(feature = "std")]
7#[cfg(not(feature = "dep_portable_atomic_util"))]
8use crate::future_block;
9
10use {
11 crate::{Future, FuturePending, FuturePollFn, FutureReady, TaskContext, TaskPoll},
12 ::core::future::{pending, poll_fn, ready},
13};
14
15impl<F: Future> ExtFuture for F {}
16
17pub trait ExtFuture: Future {
19 #[doc = crate::doc_!(vendor: "pollster")]
34 #[rustfmt::skip]
35 #[cfg(feature = "std")]
36 #[cfg_attr(feature = "nightly_doc", doc(cfg(feature = "std")))]
37 #[cfg(not(feature = "dep_portable_atomic_util"))]
38 #[cfg_attr(feature = "nightly_doc", doc(cfg(not(feature = "dep_portable_atomic_util"))))]
39 fn block_on(self) -> Self::Output where Self: Sized { future_block(self) }
41
42 #[rustfmt::skip]
44 fn pending<T>() -> FuturePending<T> { pending() }
45
46 #[rustfmt::skip]
48 fn poll_fn<T, F>(function: F) -> FuturePollFn<F>
49 where F: FnMut(&mut TaskContext<'_>) -> TaskPoll<T> { poll_fn(function) }
50
51 #[rustfmt::skip]
53 fn ready<T>(value: T) -> FutureReady<T> { ready(value) }
54}