pub trait HostProxyInterface: Send + Sync {
    // Required method
    fn open(&self, channel: ServerEnd<HostMarker>) -> Result<(), Error>;
}

Required Methods§

source

fn open(&self, channel: ServerEnd<HostMarker>) -> Result<(), Error>

Implementors§