Trait bluetooth_hci::Vendor[][src]

pub trait Vendor {
    type Status: TryFrom<u8, Error = BadStatusError> + Into<u8> + Clone + Debug;
    type Event: VendorEvent;
}

Trait defining vendor-specific extensions for the Bluetooth Controller.

Associated Types

Enumeration of vendor-specific status codes.

Enumeration of vendor-specific events.

Implementors