pub trait ConnectorProxyInterface: Send + Sync {
// Required method
fn connect(
&self,
client_type: ClientType,
watcher: ServerEnd<WatcherMarker>,
) -> Result<(), Error>;
}
pub trait ConnectorProxyInterface: Send + Sync {
// Required method
fn connect(
&self,
client_type: ClientType,
watcher: ServerEnd<WatcherMarker>,
) -> Result<(), Error>;
}