Add more must_use attributes (#2846)

… so people get a warning when they accidentally add a semicolon after the response expression in a handler function.

Also update changelogs of axum-core, axum-extra.
This commit is contained in:
Jonas Platte
2024-09-11 19:17:25 +00:00
committed by GitHub
parent fdf83d0b73
commit b214e39581
6 changed files with 21 additions and 4 deletions
+1
View File
@@ -111,6 +111,7 @@ use std::{
/// ```
pub trait IntoResponse {
/// Create a response.
#[must_use]
fn into_response(self) -> Response;
}