pub trait BluetoothDevice {
const BLUETOOTH_ADDRESS: [u8; 6];
}
Expand description
A basic trait that all nRF5x-based devices that use bluetooth features must implement.
Required Associated Constants§
const BLUETOOTH_ADDRESS: [u8; 6]
Dyn Compatibility§
This trait is not dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety", so this trait is not object safe.