1//! Error types for the evdev backend.
23/// Errors from the evdev backend.
4#[derive(Debug, thiserror::Error)]
5pub enum Error {
6/// Failed to create or use the uinput virtual device.
7#[error("uinput virtual device error")]
8Uinput(#[source] std::io::Error),
9}