Anscape provides a simple way to customize your terminal window with some styles and colors and manipulate with a cursor position using ANSI Escape Sequences.
//! # Basic Sequences
/// # Escape sequence
/// Most of sequences start from this
pubconstESC:&str="\x1b[";/// # Reset sequence
/// Resets all styles and colors
pubconstRESET:&str="\x1b[0m";