notcurses 3.6.0

A high level Rust wrapper for the notcurses C library
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
// notcurses::input
//
//!
//

mod input;
mod input_type;
mod key;
mod key_mod;
mod mice_events;
mod received;

pub use input::Input;
pub use input_type::InputType;
pub use key::Key;
pub use key_mod::KeyMod;
pub use mice_events::MiceEvents;
pub use received::Received;