pub trait Net { type Error: Debug; // Required method fn send_message(&self, msg: Message) -> Result<(), Self::Error>; }