pub type Result<T> = Result<T, TextError>;
Result of text progress
pub enum Result<T> { Ok(T), Err(TextError), }
Contains the success value
Contains the error value