Trait std::comm::GenericChan

pub trait GenericChan<T> {
    fn send(&self, x: T);
}

A trait for things that can send multiple messages.

Required Methods

fn send(&self, x: T)

Sends a message.

Implementors