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§

source

type Status: TryFrom<u8, Error = BadStatusError> + Into<u8> + Clone + Debug

Enumeration of vendor-specific status codes.

source

type Event: VendorEvent

Enumeration of vendor-specific events.

Implementors§