dewit 0.0.1

Define scheduling and execution of code separately from data flow
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
//! Various implementations of execution modes. Each of these depends
//! on a feature, or you can implement one yourself if the provided modes
//! are insufficient.

#[cfg(feature = "async")]
mod r#async;
#[cfg(feature = "async")]
pub use r#async::Async;

#[cfg(feature = "blocking")]
mod blocking;
#[cfg(feature = "blocking")]
pub use blocking::Blocking;