wealthy 0.2.0

[Rich](https://github.com/Textualize/rich) ported to Rust!
Documentation
1
2
3
4
5
6
7
8
9
#![allow(dead_code)]

/// Defines a rectangualar region of the screen.
pub(crate) struct Region {
    pub(crate) x: u32,
    pub(crate) y: u32,
    pub(crate) width: u32,
    pub(crate) height: u32,
}