macro_rules! poll_until_some_async {
($condition:expr) => { ... };
}Expand description
Repeatedly evaluates an async condition until it returns Some(v). Returns v.
Use if your condition is an async fn.
macro_rules! poll_until_some_async {
($condition:expr) => { ... };
}Repeatedly evaluates an async condition until it returns Some(v). Returns v.
Use if your condition is an async fn.