oma-inquire 0.1.0

inquire is a library for building interactive prompts on terminals
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
//! UI-related definitions for rendered content.

mod backend;
mod color;
mod key;
mod render_config;
mod style;

pub(crate) use backend::*;
pub(crate) use key::{Key, KeyModifiers};

pub use color::Color;
pub use render_config::*;
pub use style::{Attributes, StyleSheet, Styled};