pub trait P2pMioService: Service {
// Required methods
fn start_mio(&mut self);
fn send_mio_cmd(&mut self, cmd: MioCmd);
}
Required Methods§
fn start_mio(&mut self)
fn send_mio_cmd(&mut self, cmd: MioCmd)
Implementors§
impl<T> P2pMioService for Twhere
T: P2pServiceWebrtcWithLibp2p,
Available on crate feature
p2p-libp2p
only.