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::*;/// Represents a collection of text tasks to be executed sequentially.
#[derive(Clone, Debug, Eq, Hash, Ord, PartialEq, PartialOrd)]pub(crate)structTask<'a>{/// Collection of text configurations to process
pub(crate)text_list:Vec<Text<'a>>,
}