color-output 8.2.9

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(Debug, Clone, PartialEq)]
pub(crate) struct Task<'a> {
    /// Collection of text configurations to process
    pub(crate) text_list: Vec<Text<'a>>,
}