Skip to main content

DeviceProxyServerHandler

Trait DeviceProxyServerHandler 

Source
pub trait DeviceProxyServerHandler<___T: Transport = Channel> {
    // Required method
    fn get_channel(
        &mut self,
        request: Request<GetChannel, ___T>,
    ) -> impl Future<Output = ()> + Send;
}
Expand description

A server handler for the DeviceProxy protocol.

See DeviceProxy for more details.

Required Methods§

Source

fn get_channel( &mut self, request: Request<GetChannel, ___T>, ) -> impl Future<Output = ()> + Send

Dyn Compatibility§

This trait is not dyn compatible.

In older versions of Rust, dyn compatibility was called "object safety".

Implementors§