tuit 0.2.1

A no_std, no_alloc TUI library
Documentation
1
2
3
4
5
6
7
8
9
extern crate std;

use crate::Error;

impl From<std::io::Error> for Error {
    fn from(_value: std::io::Error) -> Self {
        Self::Io
    }
}