pub trait ServiceProviderProxyInterface: Send + Sync {
// Required method
fn connect_to_service(
&self,
chan: Channel,
info: ConnectionInfo
) -> Result<(), Error>;
}
pub trait ServiceProviderProxyInterface: Send + Sync {
// Required method
fn connect_to_service(
&self,
chan: Channel,
info: ConnectionInfo
) -> Result<(), Error>;
}