pub trait ReceiverProxyInterface: Send + Sync {
    // Required method
    fn receive(&self, channel: Channel) -> Result<(), Error>;
}

Required Methods§

source

fn receive(&self, channel: Channel) -> Result<(), Error>

Implementors§