Struct axum_msgpack::MsgPackRaw
source · [−]pub struct MsgPackRaw<T>(pub T);Expand description
MessagePack 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 value of the
Content-Type header does not match any of the application/msgpack, application/x-msgpack
or application/*+msgpack it will reject the request and return a 400 Bad Request response.
Extractor example
use axum::{
routing::post,
Router,
};
use axum_msgpack::MsgPackRaw;
use serde::Deserialize;
#[derive(Deserialize)]
struct CreateUser {
email: String,
password: String,
}
async fn create_user(MsgPackRaw(payload): MsgPackRaw<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
MsgPackRaw, and will automatically set Content-Type: application/msgpack header.
Response example
use axum::{
extract::Path,
routing::get,
Router,
};
use axum_msgpack::MsgPackRaw;
use serde::Serialize;
use uuid::Uuid;
#[derive(Serialize)]
struct User {
id: Uuid,
username: String,
}
async fn get_user(Path(user_id) : Path<Uuid>) -> MsgPackRaw<User> {
let user = find_user(user_id).await;
MsgPackRaw(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: Clone> Clone for MsgPackRaw<T>
impl<T: Clone> Clone for MsgPackRaw<T>
sourcefn clone(&self) -> MsgPackRaw<T>
fn clone(&self) -> MsgPackRaw<T>
Returns a copy of the value. Read more
1.0.0 · sourcefn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from source. Read more
sourceimpl<T: Debug> Debug for MsgPackRaw<T>
impl<T: Debug> Debug for MsgPackRaw<T>
sourceimpl<T: Default> Default for MsgPackRaw<T>
impl<T: Default> Default for MsgPackRaw<T>
sourcefn default() -> MsgPackRaw<T>
fn default() -> MsgPackRaw<T>
Returns the “default value” for a type. Read more
sourceimpl<T> Deref for MsgPackRaw<T>
impl<T> Deref for MsgPackRaw<T>
sourceimpl<T> DerefMut for MsgPackRaw<T>
impl<T> DerefMut for MsgPackRaw<T>
sourceimpl<T> From<T> for MsgPackRaw<T>
impl<T> From<T> for MsgPackRaw<T>
sourceimpl<T, B> FromRequest<B> for MsgPackRaw<T> where
T: DeserializeOwned,
B: HttpBody + Send,
B::Data: Send,
B::Error: Into<BoxError>,
impl<T, B> FromRequest<B> for MsgPackRaw<T> where
T: DeserializeOwned,
B: HttpBody + Send,
B::Data: Send,
B::Error: Into<BoxError>,
sourceimpl<T> IntoResponse for MsgPackRaw<T> where
T: Serialize,
impl<T> IntoResponse for MsgPackRaw<T> where
T: Serialize,
sourcefn into_response(self) -> Response
fn into_response(self) -> Response
Create a response.
impl<T: Copy> Copy for MsgPackRaw<T>
Auto Trait Implementations
impl<T> RefUnwindSafe for MsgPackRaw<T> where
T: RefUnwindSafe,
impl<T> Send for MsgPackRaw<T> where
T: Send,
impl<T> Sync for MsgPackRaw<T> where
T: Sync,
impl<T> Unpin for MsgPackRaw<T> where
T: Unpin,
impl<T> UnwindSafe for MsgPackRaw<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> Instrument for T
impl<T> Instrument for T
sourcefn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
sourcefn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
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
sourceimpl<T> WithSubscriber for T
impl<T> WithSubscriber for T
sourcefn with_subscriber<S>(self, subscriber: S) -> WithDispatch<Self> where
S: Into<Dispatch>,
fn with_subscriber<S>(self, subscriber: S) -> WithDispatch<Self> where
S: Into<Dispatch>,
Attaches the provided Subscriber to this type, returning a
WithDispatch wrapper. Read more
sourcefn with_current_subscriber(self) -> WithDispatch<Self>
fn with_current_subscriber(self) -> WithDispatch<Self>
Attaches the current default Subscriber to this type, returning a
WithDispatch wrapper. Read more