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>;
}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>
Dyn Compatibility§
This trait is dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety".