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

Function not_found

templating/tinytemplate/src/main.rs:65–71  ·  view source on GitHub ↗

Error handler for a 404 Page not found error.

(res: ServiceResponse<B>)

Source from the content-addressed store, hash-verified

63
64// Error handler for a 404 Page not found error.
65fn not_found<B>(res: ServiceResponse<B>) -> Result<ErrorHandlerResponse<BoxBody>> {
66 let response = get_error_response(&res, "Page not found");
67 Ok(ErrorHandlerResponse::Response(ServiceResponse::new(
68 res.into_parts().0,
69 response.map_into_left_body(),
70 )))
71}
72
73// Generic error handler.
74fn get_error_response<B>(res: &ServiceResponse<B>, error: &str) -> HttpResponse {

Callers

nothing calls this directly

Calls 2

ResponseClass · 0.85
get_error_responseFunction · 0.70

Tested by

no test coverage detected