revue 2.71.1

A Vue-style TUI framework for Rust with CSS styling
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
//! Type definitions for figlet rendering

/// Figlet font style
#[derive(Clone, Copy, Debug, Default, PartialEq, Eq)]
pub enum FigletFont {
    /// Block style using Unicode box-drawing characters
    #[default]
    Block,
    /// Slant style
    Slant,
    /// Simple banner style
    Banner,
    /// Small compact style
    Small,
    /// Mini style (3 rows)
    Mini,
}