pub trait CmdTunnelService<M: CmdTunnelMeta, R: CmdTunnelRead<M>, W: CmdTunnelWrite<M>>:
Send
+ Sync
+ 'static {
// Required method
fn handle_tunnel<'life0, 'async_trait>(
&'life0 self,
tunnel: Splittable<R, W>,
) -> Pin<Box<dyn Future<Output = CmdResult<()>> + Send + 'async_trait>>
where Self: 'async_trait,
'life0: 'async_trait;
}