pub type Result<T> = Result<T, HtmlError>;
Result type alias for library operations
enum Result<T> { Ok(T), Err(HtmlError), }
Contains the success value
Contains the error value