route_manager 0.2.11

Cross-platform route management interface
Documentation
1
2
3
4
5
6
7
8
#[cfg(feature = "async")]
mod tokio;
#[cfg(feature = "async")]
pub(crate) use tokio::*;
#[cfg(all(feature = "async_io", not(feature = "async")))]
mod async_io;
#[cfg(all(feature = "async_io", not(feature = "async")))]
pub(crate) use async_io::*;