pub trait StreamConfigConnectorProxyInterface: Send + Sync {
    // Required method
    fn connect(
        &self,
        protocol: ServerEnd<StreamConfigMarker>
    ) -> Result<(), Error>;
}

Required Methods§

source

fn connect(&self, protocol: ServerEnd<StreamConfigMarker>) -> Result<(), Error>

Implementors§