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)]pubstructTask<'a>{/// Collection of text configurations to process
pubtext_list:Vec<Text<'a>>,
}