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

Required Methods§

source

fn connect_to_service( &self, chan: Channel, info: ConnectionInfo ) -> Result<(), Error>

Implementors§