1 2 3 4 5 6 7 8
use actix_web::{HttpRequest, HttpResponse}; pub async fn not_found(req: HttpRequest) -> HttpResponse { HttpResponse::NotFound().body(format!( "The requested uri does not exist:\r\nuri: {}", req.uri() )) }