pub struct Yaml<T>(pub T);
Expand description
YAML 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/yaml
header, it will reject the request and return a
400 Bad Request
response.
Extractor example
use axum::{
extract,
routing::post,
Router,
};
use axum_yaml::Yaml;
use serde::Deserialize;
#[derive(Deserialize)]
struct CreateUser {
email: String,
password: String,
}
async fn create_user(Yaml(payload): Yaml<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
YAML
, and will automatically set Content-Type: application/yaml
header.
Response example
use axum::{
extract::Path,
routing::get,
Router,
};
use axum_yaml::Yaml;
use serde::Serialize;
use uuid::Uuid;
#[derive(Serialize)]
struct User {
id: Uuid,
username: String,
}
async fn get_user(Path(user_id) : Path<Uuid>) -> Yaml<User> {
let user = find_user(user_id).await;
Yaml(user)
}
async fn find_user(user_id: Uuid) -> User {
// ...
}
let app = Router::new().route("/users/:id", get(get_user));
Tuple Fields§
§0: T
Implementations§
source§impl<T> Yaml<T>where
T: DeserializeOwned,
impl<T> Yaml<T>where
T: DeserializeOwned,
sourcepub fn from_bytes(bytes: &[u8]) -> Result<Self, YamlRejection>
pub fn from_bytes(bytes: &[u8]) -> Result<Self, YamlRejection>
Construct a Yaml<T>
from a byte slice. Most users should prefer to use the FromRequest
impl
but special cases may require first extracting a Request
into Bytes
then optionally
constructing a Yaml<T>
.
Trait Implementations§
source§impl<T, S> FromRequest<S> for Yaml<T>
impl<T, S> FromRequest<S> for Yaml<T>
§type Rejection = YamlRejection
type Rejection = YamlRejection
If the extractor fails it’ll use this “rejection” type. A rejection is
a kind of error that can be converted into a response.
source§impl<T> IntoResponse for Yaml<T>where
T: Serialize,
impl<T> IntoResponse for Yaml<T>where
T: Serialize,
source§fn into_response(self) -> Response
fn into_response(self) -> Response
Create a response.
impl<T: Copy> Copy for Yaml<T>
Auto Trait Implementations§
impl<T> RefUnwindSafe for Yaml<T>where
T: RefUnwindSafe,
impl<T> Send for Yaml<T>where
T: Send,
impl<T> Sync for Yaml<T>where
T: Sync,
impl<T> Unpin for Yaml<T>where
T: Unpin,
impl<T> UnwindSafe for Yaml<T>where
T: UnwindSafe,
Blanket Implementations§
source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more