pub type TextResult<T> = Result<T, TextError>;
Result type for text operations.
pub enum TextResult<T> { Ok(T), Err(TextError), }
Contains the success value
Contains the error value