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