//! 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")]modr#async;#[cfg(feature ="async")]pubuse r#async::Async;#[cfg(feature ="blocking")]modblocking;#[cfg(feature ="blocking")]pubuseblocking::Blocking;