async_tasks_state_map 1.0.1

A struct for recording execution status of async tasks with async methods.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
#![doc = include_str ! ("../README.md")]

//! # Usage
//!
//! Just look at the [`AsyncTasksRecorder`](AsyncTasksRecorder).
//!

mod models;
mod recorder;

pub use models::*;
pub use recorder::*;

pub use scc;