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

Required Methods§

source

fn connect(&self, request: ServerEnd<PhyMarker>) -> Result<(), Error>

Implementors§