An atomic output library based on Rust that supports output functionalities through functions, builders, and other methods. It allows customization of text and background colors.
usecrate::*;/// Trait for converting colors to their ANSI escape sequences.
pub(crate)traitColorDisplay{/// Gets the ANSI escape sequence for the color.
////// # Arguments
////// - `&Self` - Reference to self
/// - `DisplayType` - Whether to apply to text or background
////// # Returns
////// - `String` - The ANSI escape sequence string
fnget_str(&self, display_type: DisplayType)-> String;}