1use smart_keymap::input::Event;
23/// Messages for the task-oriented frameworks which manages the
4/// keyboard backend.
5#[derive(Debug)]
6pub enum BackendMessage {
7/// Update the layout with this event.
8Event(Event),
9/// Tick the layout (and write report to the USB class).
10Tick,
11}