Skip to main content

color_output/task/
struct.rs

1use crate::*;
2
3/// Represents a collection of text tasks to be executed sequentially.
4#[derive(Clone, Debug, Eq, Hash, Ord, PartialEq, PartialOrd)]
5pub struct Task<'a> {
6    /// Collection of text configurations to process
7    pub text_list: Vec<Text<'a>>,
8}