pub trait DeviceExtManual: IsA<Device> + Sealed + 'static {
    // Provided methods
    fn is_axis(&self, axes: &mut [f64], use_: AxisUse, value: &mut f64) -> bool { ... }
    fn history<P: IsA<Window>>(
        &self,
        window: &P,
        start: u32,
        stop: u32
    ) -> Vec<TimeCoord> { ... }
}

Provided Methods§

source

fn is_axis(&self, axes: &mut [f64], use_: AxisUse, value: &mut f64) -> bool

source

fn history<P: IsA<Window>>( &self, window: &P, start: u32, stop: u32 ) -> Vec<TimeCoord>

Implementors§