pub trait Connectable {
// Required methods
fn set_client(&mut self);
fn get_connection(&self) -> &Client;
fn get_mut_connection(&mut self) -> &mut Client;
}pub trait Connectable {
// Required methods
fn set_client(&mut self);
fn get_connection(&self) -> &Client;
fn get_mut_connection(&mut self) -> &mut Client;
}