logo
pub trait WriteStreamT<D: Data> {
    fn send(&mut self, msg: Message<D>) -> Result<(), SendError>;
}
Expand description

Write stream trait which allows specialized implementations of send depending on the serialization library used.

Required methods

Sends a messsage to a channel.

Implementors