txtframe 0.4.0

Creates a frame for text.
Documentation
1
2
3
4
5
6
7
8
9
10
11
/// Text alignment within the frame.
#[derive(Clone, Copy, Debug, Default, PartialEq, Eq)]
pub enum Algn {
    /// Align left.
    #[default]
    Left,
    /// Align center.
    Centr,
    /// Align right.
    Right,
}