pub trait HostNameSubscriberProxyInterface: Send + Sync {
    // Required method
    fn subscribe_to_host_name(
        &self,
        host: &str,
        options: &HostNameSubscriptionOptions,
        listener: ClientEnd<HostNameSubscriptionListenerMarker>
    ) -> Result<(), Error>;
}

Required Methods§

source

fn subscribe_to_host_name( &self, host: &str, options: &HostNameSubscriptionOptions, listener: ClientEnd<HostNameSubscriptionListenerMarker> ) -> Result<(), Error>

Implementors§