Can someone breakdown what's going on here? I'm extremely confused.
async fn create_user(extract::Json(payload): extract::Json<CreateUser>) {
// payload is a `CreateUser`
}```
https://docs.rs/axum/latest/axum/struct.Json.html
This is a struct tuple of a single `T` right? How is it being used as the name of a parameter?
JSON Extractor / Response.