use axum::{ extract::FromRequestParts, response::{IntoResponse, Response}, Error, }; use http::{request::Parts, StatusCode}; use serde::de::DeserializeOwned; use std::fmt; /// Extractor that deserializes query strings into some type. /// /// `T` is expected to implement [`serde::Deserialize`]. /// /// # Differences from `axum::extract::Query` /// /// This extractor uses [`serde_html_form`] under-the-hood which supports multi-value items. These /// are sent by multiple `` attributes of the same name (e.g. checkboxes) and `