channel-sender 0.4.0

Channel Sender
Documentation
1
2
3
4
5
6
use crate::error::SendErrorWithoutFull;

//
pub trait Sender<T> {
    fn send(self, t: T) -> Result<(), SendErrorWithoutFull<T>>;
}