1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
//! `rescue_from`: map specific error types to responses instead of a blanket
//! `500` (Rails `rescue_from RecordNotFound, with: :not_found`).
//!
//! Actions return `Result<Response, anyhow::Error>`; on an `Err`, the registered
//! handlers are tried in order by downcasting the error to each handler's type.
//! The first that matches produces the response; if none match, the caller falls
//! back to the default `500`.
use crateResponse;
use anyhow;
type Handler = ;
/// An ordered set of typed error handlers.