Fork of https://github.com/PhotonQuantum/axum-xml updating it to the latest axum 0.6 version
XML extractor for axum.
This crate provides struct Xml
that can be used to extract typed information from request's body.
Uses quick-xml to deserialize and serialize the payloads
encoding
: support non utf-8 payloadWhen used as an Extractor XML content can be deserialized from the request body into some type that implements serde::Deserialize
. If the request body cannot be parsed, or it does not contain the Content-Type: application/xml
header, it will reject the request and return a 400 Bad Request
response.
```rust use axum::{ extract, routing::post, Router, }; use serde::Deserialize; use axum_xml::Xml;
struct CreateUser { email: String, password: String, }
async fn create_user(Xml(payload): XmlCreateUser
}
async fn main() { let app = Router::new().route("/users", post(createuser)); axum::Server::bind(&"0.0.0.0:3000".parse().unwrap()) .serve(app.intomake_service()) .await .unwrap(); } ```
When used as a response, it can serialize any type that implements serde::Serialize
to XML
, and will automatically set Content-Type: application/xml
header.
```rust use axum::{ extract, routing::get, Router, }; use serde::Deserialize; use axum_xml::Xml;
struct User { id: Uuid, username: String, }
async fn getuser(Path(userid) : Path
async fn finduser(userid: Uuid) -> User { unimplemented!(); }
async fn main() { let app = Router::new().route("/users", get(getuser)); axum::Server::bind(&"0.0.0.0:3000".parse().unwrap()) .serve(app.intomake_service()) .await .unwrap(); } ```
MIT