pub trait InterfacesProxyInterface: Send + Sync {
    // Required method
    fn get_port(
        &self,
        id: u64,
        port: ServerEnd<PortMarker>
    ) -> Result<(), Error>;
}

Required Methods§

source

fn get_port(&self, id: u64, port: ServerEnd<PortMarker>) -> Result<(), Error>

Implementors§