pub trait ConnectorProxyInterface: Send + Sync {
// Required method
fn connect(
&self,
client_type: ClientType,
watcher: ServerEnd<WatcherMarker>,
) -> Result<(), Error>;
}Required Methods§
fn connect( &self, client_type: ClientType, watcher: ServerEnd<WatcherMarker>, ) -> Result<(), Error>
Dyn Compatibility§
This trait is dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety".