use thiserror::Error;
#[derive(Clone, Copy, Debug, Eq, Error, PartialEq)]
#[error("TrySendError")]
pub struct TrySendError;
#[cfg(feature = "flume")]
impl<T> From<flume::TrySendError<T>> for TrySendError {
fn from(_input: flume::TrySendError<T>) -> Self {
Self }
}
#[cfg(feature = "tokio")]
impl<T> From<tokio::sync::mpsc::error::TrySendError<T>> for TrySendError {
fn from(_input: tokio::sync::mpsc::error::TrySendError<T>) -> Self {
Self }
}