pub trait CmdSend<M: CmdTunnelMeta>: Send + 'static {
// Required methods
fn get_tunnel_meta(&self) -> Option<Arc<M>>;
fn get_remote_peer_id(&self) -> PeerId;
}pub trait CmdSend<M: CmdTunnelMeta>: Send + 'static {
// Required methods
fn get_tunnel_meta(&self) -> Option<Arc<M>>;
fn get_remote_peer_id(&self) -> PeerId;
}