future-fn 0.3.16

A Rust library providing macros to simplify the creation of asynchronous closures with external state captured by move. Useful for structuring asynchronous code with ease and clarity.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
//! future-fn
//!
//! A Rust library providing macros to simplify the creation of
//! asynchronous closures with external state captured by move.
//! Useful for structuring asynchronous code with ease and clarity.

mod r#macro;
#[cfg(test)]
mod test;

#[cfg(test)]
use std::time::Duration;

#[cfg(test)]
use tokio::time::sleep;