Type Alias HandlerResult
pub type HandlerResult = Result<(), Box<dyn Error + Sync + Send>>;Available on crate features
html and http and std 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>),
}