pub trait PeerServiceHandle<T: GattTypes> {
// Required methods
fn uuid(&self) -> Uuid;
fn is_primary(&self) -> bool;
fn connect(&self) -> T::ServiceConnectFut;
}Required Methods§
fn uuid(&self) -> Uuid
fn is_primary(&self) -> bool
fn connect(&self) -> T::ServiceConnectFut
Dyn Compatibility§
This trait is dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety".