dbuff 0.1.0

Double-buffered state with async command chains, streaming, and keyed task pools for ratatui applications
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
mod command;
mod domain;
mod error;
mod executor;
mod stream;
mod stream_status;
mod task_pool;
mod task_status;

pub use command::*;
pub use domain::*;
#[cfg(feature = "error-stack")]
pub use error::*;
pub use executor::*;
pub use stream::*;
pub use stream_status::*;
pub use task_pool::*;
pub use task_status::*;