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