[][src]Struct usbd_hid::hid_class::HIDClass

pub struct HIDClass<'a, B: UsbBus> { /* fields omitted */ }

Controller for HID communications on a pair of endpoints.

TODO details.

Methods

impl<'_, B: UsbBus> HIDClass<'_, B>[src]

pub fn new<'a>(
    alloc: &'a UsbBusAllocator<B>,
    desc: &'static [u8]
) -> HIDClass<'a, B>
[src]

Creates a new HIDClass with the provided UsbBus.

Trait Implementations

impl<'_, B: UsbBus> UsbClass<B> for HIDClass<'_, B>[src]

Auto Trait Implementations

impl<'a, B> Send for HIDClass<'a, B>

impl<'a, B> Sync for HIDClass<'a, B>

impl<'a, B> Unpin for HIDClass<'a, B>

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.