Add YieldingAsync adapter

This commit is contained in:
Rasmus Melchior Jacobsen
2023-05-22 16:48:31 +02:00
parent d54eb1107e
commit cd1bf31fed
4 changed files with 241 additions and 79 deletions

View File

@ -0,0 +1,5 @@
mod blocking_async;
mod yielding_async;
pub use blocking_async::BlockingAsync;
pub use yielding_async::YieldingAsync;