pub trait ConnectorProxyInterface: Send + Sync {
    // Required method
    fn connect(
        &self,
        client_type: ClientType,
        watcher: ServerEnd<WatcherMarker>,
    ) -> Result<(), Error>;
}

Required Methods§

source

fn connect( &self, client_type: ClientType, watcher: ServerEnd<WatcherMarker>, ) -> Result<(), Error>

Implementors§