[][src]Enum bluetooth_hci::host::uart::Packet

pub enum Packet<Vendor> where
    Vendor: VendorEvent
{ Event(Event<Vendor>), }

Packet types that may be read from the controller.

Variants

Event(Event<Vendor>)

The HCI Event Packet is used by the Controller to notify the Host when events occur. The event is specialized to support vendor-specific events.

Trait Implementations

impl<Vendor: Clone> Clone for Packet<Vendor> where
    Vendor: VendorEvent
[src]

impl<Vendor: Debug> Debug for Packet<Vendor> where
    Vendor: VendorEvent
[src]

Auto Trait Implementations

impl<Vendor> Send for Packet<Vendor> where
    Vendor: Send,
    <Vendor as VendorEvent>::ReturnParameters: Send,
    <Vendor as VendorEvent>::Status: Send

impl<Vendor> Sync for Packet<Vendor> where
    Vendor: Sync,
    <Vendor as VendorEvent>::ReturnParameters: Sync,
    <Vendor as VendorEvent>::Status: Sync

impl<Vendor> Unpin for Packet<Vendor> where
    Vendor: Unpin,
    <Vendor as VendorEvent>::ReturnParameters: Unpin,
    <Vendor as VendorEvent>::Status: Unpin

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.