pub type TextsBatch = Result<Vec<Text>, Box<dyn Error>>;
pub enum TextsBatch { Ok(Vec<Text>), Err(Box<dyn Error>), }
Contains the success value
Contains the error value