pub type HandlerResult = Result<(), BoxError>;Available on crate feature
html only.Expand description
The result of an element content handler. An error aborts the rewrite.
Aliased Type§
pub enum HandlerResult {
Ok(()),
Err(Box<dyn Error + Sync + Send>),
}