retroglyph-core 0.6.0

A 2D pseudographic terminal library -- core types, no backend
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
/// A fully filled cell.
pub const FULL: char = '';
/// Filled 7/8 from the left.
pub const SEVEN_EIGHTHS: char = '';
/// Filled 3/4 from the left.
pub const THREE_QUARTERS: char = '';
/// Filled 5/8 from the left.
pub const FIVE_EIGHTHS: char = '';
/// Filled 1/2 from the left.
pub const HALF: char = '';
/// Filled 3/8 from the left.
pub const THREE_EIGHTHS: char = '';
/// Filled 1/4 from the left.
pub const ONE_QUARTER: char = '';
/// Filled 1/8 from the left.
pub const ONE_EIGHTH: char = '';