pub type Result<T> = Result<T, Box<Error>>;
Result type in Texlang.
enum Result<T> { Ok(T), Err(Box<Error>), }
Contains the success value
Contains the error value