tokio_uring/
future.rs

1// TODO see about removing or just commenting out.
2#[allow(unused_macros)]
3macro_rules! ready {
4    ($e:expr $(,)?) => {
5        match $e {
6            std::task::Poll::Ready(t) => t,
7            std::task::Poll::Pending => return std::task::Poll::Pending,
8        }
9    };
10}