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

Trait defines message response channel

Required Methods

Implementations on Foreign Types

Implementors