Trait superchan::SenderExperimental [-]  [+] [src]

pub trait Sender<T> where T: Encodable<Encoder<'static>, IoError> + Send {
    fn send(&mut self, t: T);
}

Sender is a generic trait for objects that are able to send values across a network.

Required Methods

fn send(&mut self, t: T)

Implementors