pub trait ClientProviderProxyInterface: Send + Sync {
    // Required method
    fn new_client(
        &self,
        params: &NewClientParams,
        request: ServerEnd<ClientMarker>
    ) -> Result<(), Error>;
}

Required Methods§

source

fn new_client( &self, params: &NewClientParams, request: ServerEnd<ClientMarker> ) -> Result<(), Error>

Implementors§