Struct json_api_rocket::request::Update [] [src]

pub struct Update<T: DeserializeOwned>(pub T);

Methods

impl<T: DeserializeOwned> Update<T>
[src]

[src]

Consumes the Update wrapper and returns the wrapped value.

Trait Implementations

impl<T: Debug + DeserializeOwned> Debug for Update<T>
[src]

[src]

Formats the value using the given formatter.

impl<T: DeserializeOwned> Deref for Update<T>
[src]

The resulting type after dereferencing.

[src]

Dereferences the value.

impl<T: DeserializeOwned> DerefMut for Update<T>
[src]

[src]

Mutably dereferences the value.

impl<T: DeserializeOwned> FromData for Update<T>
[src]

The associated error to be returned when the guard fails.

[src]

Validates, parses, and converts an instance of Self from the incoming request body data. Read more