Struct rocket::request::LenientForm
source · pub struct LenientForm<T>(pub T);
Expand description
A data guard for parsing FromForm
types leniently.
This type implements the FromData
trait, and like Form
, provides a
generic means to parse arbitrary structures from incoming form data. Unlike
Form
, this type uses a lenient parsing strategy: forms that contains a
superset of the expected fields (i.e, extra fields) will parse successfully.
§Leniency
A LenientForm<T>
will parse successfully from an incoming form if the form
contains a superset of the fields in T
. Said another way, a
LenientForm<T>
automatically discards extra fields without error. For
instance, if an incoming form contains the fields “a”, “b”, and “c” while
T
only contains “a” and “c”, the form will parse as LenientForm<T>
.
§Usage
The usage of a LenientForm
type is equivalent to that of Form
, so we
defer details to its documentation.
LenientForm
implements FromData
, so it can be used directly as a target
of the data = "<param>"
route parameter. For instance, if some structure
of type T
implements the FromForm
trait, an incoming form can be
automatically parsed into the T
structure with the following route and
handler:
use rocket::request::LenientForm;
#[derive(FromForm)]
struct UserInput {
value: String
}
#[post("/submit", data = "<user_input>")]
fn submit_task(user_input: LenientForm<UserInput>) -> String {
format!("Your value: {}", user_input.value)
}
§Incoming Data Limits
A LenientForm
obeys the same data limits as a Form
and defaults to
32KiB. The limit can be increased by setting the limits.forms
configuration parameter. For instance, to increase the forms limit to 512KiB
for all environments, you may add the following to your Rocket.toml
:
[global.limits]
forms = 524288
Tuple Fields§
§0: T
Implementations§
source§impl<T> LenientForm<T>
impl<T> LenientForm<T>
sourcepub fn into_inner(self) -> T
pub fn into_inner(self) -> T
Consumes self
and returns the parsed value.
§Example
use rocket::request::LenientForm;
#[derive(FromForm)]
struct MyForm {
field: String,
}
#[post("/submit", data = "<form>")]
fn submit(form: LenientForm<MyForm>) -> String {
form.into_inner().field
}
Trait Implementations§
source§impl<T: Debug> Debug for LenientForm<T>
impl<T: Debug> Debug for LenientForm<T>
source§impl<T> Deref for LenientForm<T>
impl<T> Deref for LenientForm<T>
source§impl<'f, T: FromForm<'f>> FromData<'f> for LenientForm<T>
impl<'f, T: FromForm<'f>> FromData<'f> for LenientForm<T>
source§type Error = FormDataError<'f, <T as FromForm<'f>>::Error>
type Error = FormDataError<'f, <T as FromForm<'f>>::Error>
source§type Borrowed = str
type Borrowed = str
FromData::from_data()
when
FromData::transform()
returns a Transform::Borrowed
. Read moresource§impl<'q, T: FromForm<'q>> FromQuery<'q> for LenientForm<T>
impl<'q, T: FromForm<'q>> FromQuery<'q> for LenientForm<T>
source§impl<'f, A, T: FromUriParam<Query, A> + FromForm<'f>> FromUriParam<Query, A> for LenientForm<T>
impl<'f, A, T: FromUriParam<Query, A> + FromForm<'f>> FromUriParam<Query, A> for LenientForm<T>
source§fn from_uri_param(param: A) -> Self::Target
fn from_uri_param(param: A) -> Self::Target
T
into a value of type Self::Target
. The
resulting value of type Self::Target
will be rendered into a URI using
its UriDisplay
implementation.