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

Required Methods§

source

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

Implementors§