MCPcopy Create free account
hub / github.com/actix/examples / not_found

Function not_found

templating/handlebars/src/main.rs:76–82  ·  view source on GitHub ↗

Error handler for a 404 Page not found error.

(res: ServiceResponse<B>)

Source from the content-addressed store, hash-verified

74
75// Error handler for a 404 Page not found error.
76fn not_found<B>(res: ServiceResponse<B>) -> Result<ErrorHandlerResponse<BoxBody>> {
77 let response = get_error_response(&res, "Page not found");
78 Ok(ErrorHandlerResponse::Response(ServiceResponse::new(
79 res.into_parts().0,
80 response.map_into_left_body(),
81 )))
82}
83
84// Generic error handler.
85fn get_error_response<B>(res: &ServiceResponse<B>, error: &str) -> HttpResponse<BoxBody> {

Callers

nothing calls this directly

Calls 2

ResponseClass · 0.85
get_error_responseFunction · 0.70

Tested by

no test coverage detected