Trait seec_channel::SenderT
source · pub trait SenderT<T> {
type Error;
// Required method
fn send<'life0, 'async_trait>(
&'life0 mut self,
item: T
) -> Pin<Box<dyn Future<Output = Result<(), Self::Error>> + Send + 'async_trait>>
where Self: 'async_trait,
'life0: 'async_trait;
}