nextdeck 0.1.0

A TUI wrapper for cargo-nextest, Clap-powered xtasks, and more.
1
2
3
4
5
6
7
pub const ENABLED: char = '';
pub const DISABLED: char = '';
pub const EVENT_BUBBLE: char = '';

pub const fn bool_symbol(value: bool) -> char {
    if value { ENABLED } else { DISABLED }
}