keyberon_smart_keyboard/
split.rs

1use smart_keymap::input::Event;
2
3/// 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.
8    Event(Event),
9    /// Tick the layout (and write report to the USB class).
10    Tick,
11}