blob: 1f48623b8012d52416fa2c165d40859fb140c5db [file] [log] [blame]
macro_rules! ready {
($e:expr $(,)?) => {
match $e {
std::task::Poll::Ready(t) => t,
std::task::Poll::Pending => return std::task::Poll::Pending,
}
};
}