[][src]Struct joycon_rs::joycon::input_report_mode::StandardInputReport

pub struct StandardInputReport<EX: TryFrom<[u8; 349], Error = JoyConError>> {
    pub common: CommonReport,
    pub extra: EX,
}

Standard input report with extra report.

Fields

common: CommonReportextra: EX

Trait Implementations

impl<EX> Clone for StandardInputReport<EX> where
    EX: TryFrom<[u8; 349], Error = JoyConError> + Clone
[src]

impl<EX> Debug for StandardInputReport<EX> where
    EX: TryFrom<[u8; 349], Error = JoyConError> + Debug
[src]

impl<EX> Eq for StandardInputReport<EX> where
    EX: TryFrom<[u8; 349], Error = JoyConError> + Eq
[src]

impl<EX> Hash for StandardInputReport<EX> where
    EX: TryFrom<[u8; 349], Error = JoyConError> + Hash
[src]

impl<EX> PartialEq<StandardInputReport<EX>> for StandardInputReport<EX> where
    EX: TryFrom<[u8; 349], Error = JoyConError> + PartialEq
[src]

impl<EX> TryFrom<[u8; 362]> for StandardInputReport<EX> where
    EX: TryFrom<[u8; 349], Error = JoyConError>, 
[src]

type Error = JoyConError

The type returned in the event of a conversion error.

Auto Trait Implementations

impl<EX> RefUnwindSafe for StandardInputReport<EX> where
    EX: RefUnwindSafe

impl<EX> Send for StandardInputReport<EX> where
    EX: Send

impl<EX> Sync for StandardInputReport<EX> where
    EX: Sync

impl<EX> Unpin for StandardInputReport<EX> where
    EX: Unpin

impl<EX> UnwindSafe for StandardInputReport<EX> where
    EX: UnwindSafe

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> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

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.