pub trait Class {
    type Input;
    type Output;

    fn input(&self) -> Self::Input;
    fn output(&self) -> Self::Output;
}
Expand description

Device class trait

Required Associated Types

Input report type

Output report type

Required Methods

Create input report

Create output report

Implementors