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

Required Methods§

source

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

Implementors§