aether-tui 0.1.7

A lightweight terminal UI rendering library for building rich CLI applications
Documentation
1
2
3
4
5
6
7
/// A single option in a selection list.
#[derive(Debug, Clone)]
pub struct SelectOption {
    pub value: String,
    pub title: String,
    pub description: Option<String>,
}