[][src]Struct rocket_contrib::msgpack::MsgPack

pub struct MsgPack<T>(pub T);

The MsgPack type: implements FromData and Responder, allowing you to easily consume and respond with MessagePack data.

Receiving MessagePack

If you're receiving MessagePack data, simply add a data parameter to your route arguments and ensure the type of the parameter is a MsgPack<T>, where T is some type you'd like to parse from MessagePack. T must implement Deserialize from serde. The data is parsed from the HTTP request body.

use rocket_contrib::msgpack::MsgPack;

#[post("/users", format = "msgpack", data = "<user>")]
fn new_user(user: MsgPack<User>) {
    /* ... */
}

You don't need to use format = "msgpack", but it may be what you want. Using format = msgpack means that any request that doesn't specify "application/msgpack" as its first Content-Type: header parameter will not be routed to this handler.

Sending MessagePack

If you're responding with MessagePack data, return a MsgPack<T> type, where T implements Serialize from serde. The content type of the response is set to application/msgpack automatically.

use rocket_contrib::msgpack::MsgPack;

#[get("/users/<id>")]
fn user(id: usize) -> MsgPack<User> {
    let user_from_id = User::from(id);
    /* ... */
    MsgPack(user_from_id)
}

Incoming Data Limits

The default size limit for incoming MessagePack data is 1MiB. Setting a limit protects your application from denial of service (DOS) attacks and from resource exhaustion through high memory consumption. The limit can be increased by setting the limits.msgpack configuration parameter. For instance, to increase the MessagePack limit to 5MiB for all environments, you may add the following to your Rocket.toml:

[global.limits]
msgpack = 5242880

Methods

impl<T> MsgPack<T>[src]

pub fn into_inner(self) -> T[src]

Consumes the MsgPack wrapper and returns the wrapped item.

Example

let string = "Hello".to_string();
let my_msgpack = MsgPack(string);
assert_eq!(my_msgpack.into_inner(), "Hello".to_string());

Trait Implementations

impl<T> DerefMut for MsgPack<T>[src]

impl<T> Deref for MsgPack<T>[src]

type Target = T

The resulting type after dereferencing.

impl<T: Debug> Debug for MsgPack<T>[src]

impl<'a, T: Deserialize<'a>> FromData<'a> for MsgPack<T>[src]

type Error = Error

The associated error to be returned when the guard fails.

type Owned = Vec<u8>

The owned type returned from [FromData::transform()]. Read more

type Borrowed = [u8]

The borrowed type consumed by [FromData::from_data()] when [FromData::transform()] returns a [Transform::Borrowed]. Read more

impl<T: Serialize> Responder<'static> for MsgPack<T>[src]

Serializes the wrapped value into MessagePack. Returns a response with Content-Type MsgPack and a fixed-size body with the serialization. If serialization fails, an Err of Status::InternalServerError is returned.

Auto Trait Implementations

impl<T> Send for MsgPack<T> where
    T: Send

impl<T> Sync for MsgPack<T> where
    T: Sync

Blanket Implementations

impl<T, U> Into for T where
    U: From<T>, 
[src]

impl<T> From for T[src]

impl<T, U> TryFrom for T where
    U: Into<T>, 
[src]

type Error = !

🔬 This is a nightly-only experimental API. (try_from)

The type returned in the event of a conversion error.

impl<T> Borrow for T where
    T: ?Sized
[src]

impl<T, U> TryInto for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

🔬 This is a nightly-only experimental API. (try_from)

The type returned in the event of a conversion error.

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> BorrowMut for T where
    T: ?Sized
[src]

impl<T> Typeable for T where
    T: Any

fn get_type(&self) -> TypeId

Get the TypeId of this object.

impl<'a, T> FromData for T where
    T: FromDataSimple
[src]

type Error = <T as FromDataSimple>::Error

The associated error to be returned when the guard fails.

type Owned = Data

The owned type returned from [FromData::transform()]. Read more

type Borrowed = Data

The borrowed type consumed by [FromData::from_data()] when [FromData::transform()] returns a [Transform::Borrowed]. Read more

impl<T> IntoCollection for T

impl<T, I> AsResult for T where
    I: Input, 

impl<T> IntoSql for T[src]

fn into_sql<T>(self) -> Self::Expression where
    Self: AsExpression<T>, 
[src]

Convert self to an expression for Diesel's query builder. Read more

fn as_sql<'a, T>(&'a self) -> <&'a Self as AsExpression<T>>::Expression where
    &'a Self: AsExpression<T>, 
[src]

Convert &self to an expression for Diesel's query builder. Read more

impl<T> Same for T

type Output = T

Should always be Self

impl<T> Erased for T

impl<T, U> TryInto for T where
    U: TryFrom<T>, 

type Err = <U as TryFrom<T>>::Err