pub trait DeviceProxyLocalServerHandler<___T: Transport = Channel> {
// Required method
fn get_channel(
&mut self,
request: Request<GetChannel, ___T>,
) -> impl Future<Output = ()>;
}Expand description
A server handler for the DeviceProxy protocol.
See DeviceProxy for more details.
Required Methods§
fn get_channel( &mut self, request: Request<GetChannel, ___T>, ) -> impl Future<Output = ()>
Dyn Compatibility§
This trait is not dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety".