pub trait OrgBluezNetwork1 {
// Required methods
fn connect(&self, uuid: &str) -> MethodReply<String>;
fn disconnect(&self) -> MethodReply<()>;
fn connected(&self) -> MethodReply<bool>;
fn interface(&self) -> MethodReply<String>;
fn uuid(&self) -> MethodReply<String>;
}