We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 6587461 commit dd3338cCopy full SHA for dd3338c
strategy/src/lib.rs
@@ -212,6 +212,14 @@ macro_rules! easy_wrapper {
212
use $crate::EventListenerFuture;
213
self._inner.into_inner().wait()
214
}
215
+
216
+ pub(crate) fn poll_with_strategy<'__strategy, __S: $crate::Strategy<'__strategy>>(
217
+ self: ::core::pin::Pin<&'__strategy mut Self>,
218
+ strategy: &mut __S,
219
+ context: &mut __S::Context,
220
+ ) -> ::core::task::Poll<$output> {
221
+ self.project()._inner.get_pin_mut().poll_with_strategy(strategy, context)
222
+ }
223
224
225
impl $(<
0 commit comments