pub struct Xml<T>(pub T);Expand description
XML Extractor / Response.
When used as an extractor, it can deserialize request bodies 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.
Extractor example
use axum::{
extract,
routing::post,
Router,
};
use serde::Deserialize;
use axum_xml::Xml;
#[derive(Deserialize)]
struct CreateUser {
email: String,
password: String,
}
async fn create_user(Xml(payload): Xml<CreateUser>) {
// payload is a `CreateUser`
}
let app = Router::new().route("/users", post(create_user));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.
Response example
use axum::{
extract::Path,
routing::get,
Router,
};
use serde::Serialize;
use uuid::Uuid;
use axum_xml::Xml;
#[derive(Serialize)]
struct User {
id: Uuid,
username: String,
}
async fn get_user(Path(user_id) : Path<Uuid>) -> Xml<User> {
let user = find_user(user_id).await;
Xml(user)
}
async fn find_user(user_id: Uuid) -> User {
// ...
}
let app = Router::new().route("/users/:id", get(get_user));Tuple Fields
0: TTrait Implementations
sourceimpl<T, B> FromRequest<B> for Xml<T> where
T: DeserializeOwned,
B: HttpBody + Send,
B::Data: Send,
B::Error: Into<BoxError>,
impl<T, B> FromRequest<B> for Xml<T> where
T: DeserializeOwned,
B: HttpBody + Send,
B::Data: Send,
B::Error: Into<BoxError>,
type Rejection = XmlRejection
type Rejection = XmlRejection
If the extractor fails it’ll use this “rejection” type. A rejection is a kind of error that can be converted into a response. Read more
sourcefn from_request<'life0, 'async_trait>(
req: &'life0 mut RequestParts<B>
) -> Pin<Box<dyn Future<Output = Result<Self, Self::Rejection>> + Send + 'async_trait>> where
'life0: 'async_trait,
Self: 'async_trait,
fn from_request<'life0, 'async_trait>(
req: &'life0 mut RequestParts<B>
) -> Pin<Box<dyn Future<Output = Result<Self, Self::Rejection>> + Send + 'async_trait>> where
'life0: 'async_trait,
Self: 'async_trait,
Perform the extraction.
sourceimpl<T> IntoResponse for Xml<T> where
T: Serialize,
impl<T> IntoResponse for Xml<T> where
T: Serialize,
sourcefn into_response(self) -> Response
fn into_response(self) -> Response
Create a response.
impl<T: Copy> Copy for Xml<T>
Auto Trait Implementations
impl<T> RefUnwindSafe for Xml<T> where
T: RefUnwindSafe,
impl<T> Send for Xml<T> where
T: Send,
impl<T> Sync for Xml<T> where
T: Sync,
impl<T> Unpin for Xml<T> where
T: Unpin,
impl<T> UnwindSafe for Xml<T> where
T: UnwindSafe,
Blanket Implementations
sourceimpl<T> BorrowMut<T> for T where
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
sourceimpl<T> ToOwned for T where
T: Clone,
impl<T> ToOwned for T where
T: Clone,
type Owned = T
type Owned = T
The resulting type after obtaining ownership.
sourcefn clone_into(&self, target: &mut T)
fn clone_into(&self, target: &mut T)
toowned_clone_into)Uses borrowed data to replace owned data, usually by cloning. Read more