pub trait DeviceSetupProxyInterface: Send + Sync {
    type SetChannelResponseFut: Future<Output = Result<DeviceSetupSetChannelResult, Error>> + Send;

    // Required method
    fn set_channel(
        &self,
        req: ServerEnd<DeviceMarker>
    ) -> Self::SetChannelResponseFut;
}

Required Associated Types§

Required Methods§

source

fn set_channel( &self, req: ServerEnd<DeviceMarker> ) -> Self::SetChannelResponseFut

Implementors§