pub trait IncomingConnectionHandler: Send + Sync + 'static { // Required method fn request(&mut self, incoming: &Incoming) -> bool; }
Implement this trait to define logic for handling incoming connections.