Macros§

  • Repeatedly evaluates condition until it returns true. Returns ().
  • Repeatedly evaluates condition to create a Future, and then awaits the Future. Returns () when the (most recently created) Future resolves to true.
  • A reimplementation of the above, which deals better with borrows.
  • Repeatedly evaluates condition until it returns Some(v). Returns v.
  • Repeatedly evaluates an async condition until it returns Some(v). Returns v. Use if your condition is an async fn.

Structs§

Enums§

Constants§

Functions§