pub type Result<T> = Result<T, HtmlError>;
Expand description
Type alias for a result using the HtmlError
error type.
This type alias makes it more convenient to work with Results throughout the library, reducing boilerplate and improving readability.
Aliased Type§
enum Result<T> {
Ok(T),
Err(HtmlError),
}