mprocs 0.9.2

TUI for running multiple processes
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
use crate::{
  app::{ClientHandle, ClientId},
  proc::msg::CustomProcCmd,
  protocol::CltToSrv,
};

#[derive(Debug)]
pub enum ServerMessage {
  ClientMessage { client_id: ClientId, msg: CltToSrv },
  ClientConnected { handle: ClientHandle },
  ClientDisconnected { client_id: ClientId },
}

impl CustomProcCmd for ServerMessage {}