termix 0.0.3

TUI framework inspired by bubbletea.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
#[derive(thiserror::Error, Debug)]
pub enum TermixError {
    #[error("Failed to write to stdout")]
    Write(String),
    #[error("Failed to detect cursor position")]
    CursorDetection,
    #[error("Failed to listen keys")]
    KeyListener,
    #[error("Unexpected byte")]
    KeyRead(u8),
    #[error("Something happend")]
    Any(#[from] anyhow::Error),
}