1 2 3 4 5 6 7 8
#[cfg_attr(docsrs, doc(cfg(feature = "async")))] #[cfg(feature = "async")] mod r#async; mod blocking; #[cfg(feature = "async")] pub use r#async::AsyncSender; pub use blocking::Sender;