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