Trait std::comm::GenericSmartChan

pub trait GenericSmartChan<T> {
    fn try_send(&self, x: T) -> bool;
}

Things that can send multiple messages and can detect when the receiver is closed

Required Methods

fn try_send(&self, x: T) -> bool

Sends a message, or report if the receiver has closed the connection.

Implementors