pub trait AttributeHandle {
type Value: AsGatt + ?Sized;
// Required method
fn handle(&self) -> u16;
}Expand description
A type which holds a handle to an attribute in the attribute table
Required Associated Types§
Required Methods§
Dyn Compatibility§
This trait is dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety".