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

Required Methods§

source

fn connect(&self, codec_protocol: ServerEnd<CodecMarker>) -> Result<(), Error>

Implementors§