Trait stm32wb_hci::Vendor
source · pub trait Vendor {
type Status: TryFrom<u8, Error = BadStatusError> + Into<u8> + Clone + Debug;
type Event: VendorEvent;
}Expand description
Trait defining vendor-specific extensions for the Bluetooth Controller.
Required Associated Types§
sourcetype Status: TryFrom<u8, Error = BadStatusError> + Into<u8> + Clone + Debug
type Status: TryFrom<u8, Error = BadStatusError> + Into<u8> + Clone + Debug
Enumeration of vendor-specific status codes.
sourcetype Event: VendorEvent
type Event: VendorEvent
Enumeration of vendor-specific events.