color-output 10.0.1

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.
Documentation
1
2
3
4
5
6
7
8
use crate::*;

/// Represents a collection of text tasks to be executed sequentially.
#[derive(Clone, Debug, Eq, Hash, Ord, PartialEq, PartialOrd)]
pub(crate) struct Task<'a> {
    /// Collection of text configurations to process
    pub(crate) text_list: Vec<Text<'a>>,
}