ktype 0.1.1

A terminal-native typing test inspired by Monkeytype — fast, minimal, and offline-first.
1
2
3
4
5
6
7
8
9
10
11
use std::time::Duration;

#[derive(Debug, Clone, PartialEq)]
pub enum Msg {
    Tick(Duration), // elapsed since test start; fired every frame by main.rs
    Char(char),
    Backspace,
    Space,
    Tab,
    Esc,
}