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