pub trait OrgBluezNetworkServer1 {
// Required methods
fn register(&self, uuid: &str, bridge: &str) -> MethodReply<()>;
fn unregister(&self, uuid: &str) -> MethodReply<()>;
}Required Methods§
fn register(&self, uuid: &str, bridge: &str) -> MethodReply<()>
fn unregister(&self, uuid: &str) -> MethodReply<()>
Dyn Compatibility§
This trait is dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety".