macro_rules! poll_until_async {
($condition:expr) => { ... };
}Expand description
Repeatedly evaluates condition to create a Future, and then awaits the Future.
Returns () when the (most recently created) Future resolves to true.
macro_rules! poll_until_async {
($condition:expr) => { ... };
}Repeatedly evaluates condition to create a Future, and then awaits the Future.
Returns () when the (most recently created) Future resolves to true.