//! Re-export tokio oneshot channel sender and receiver types, and async-channel's `RecvError`.
use ;
/// Reexport of the sending half of a tokio oneshot channel
pub type OneshotSender<T> = Sender;
/// Reexport of the receiving half of a tokio oneshot channel
pub type OneshotReceiver<T> = Receiver;
pub
///async-channel's `RecvError`
pub type RecvError = RecvError;