1use crate::*;
23/// 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
7pub text_list: Vec<Text<'a>>,
8}