pub trait Connect { // Required method fn connect(&mut self, fd: i32, exe_name: *const u8) -> Box<dyn Init>; }
| Return Init interface that forwards | requests over given socket descriptor. | Socket communication is handled on | a background thread.