pub type HTMLResult = Result<Html<String>, RUMString>;
pub enum HTMLResult { Ok(Html<String>), Err(CompactString), }
Contains the success value
Contains the error value