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

Required Methods§

source

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

Implementors§