File tree Expand file tree Collapse file tree 2 files changed +2
-11
lines changed Expand file tree Collapse file tree 2 files changed +2
-11
lines changed Original file line number Diff line number Diff line change @@ -15,9 +15,10 @@ use std::task::{self, Poll};
1515use std:: time:: { Duration , Instant } ;
1616
1717use futures_channel:: oneshot;
18+ use futures_util:: ready;
1819use tracing:: { debug, trace} ;
1920
20- use crate :: common:: { exec, exec :: Exec , ready } ;
21+ use crate :: common:: exec:: { self , Exec } ;
2122
2223// FIXME: allow() required due to `impl Trait` leaking types to this lint
2324#[ allow( missing_debug_implementations) ]
Original file line number Diff line number Diff line change 11#![ allow( missing_docs) ]
22
3- macro_rules! ready {
4- ( $e: expr) => {
5- match $e {
6- std:: task:: Poll :: Ready ( v) => v,
7- std:: task:: Poll :: Pending => return std:: task:: Poll :: Pending ,
8- }
9- } ;
10- }
11-
12- pub ( crate ) use ready;
133pub ( crate ) mod exec;
144#[ cfg( feature = "client" ) ]
155mod lazy;
You can’t perform that action at this time.
0 commit comments