pub trait ResponseChannel<M: Message>: 'static {
    fn is_canceled(&self) -> bool;
    fn send(self, response: M::Result);
}
Expand description

Trait defines message response channel

Required Methods§

Implementations on Foreign Types§

Implementors§