mirror of https://github.com/rwf2/Rocket.git
16 lines
346 B
Rust
16 lines
346 B
Rust
#![feature(plugin, custom_derive)]
|
|
#![plugin(rocket_codegen)]
|
|
|
|
extern crate rocket;
|
|
|
|
use rocket::request::{FromForm, FormItems};
|
|
|
|
#[derive(PartialEq, Debug, FromForm)]
|
|
struct Form { }
|
|
|
|
fn main() {
|
|
// Same number of arguments: simple case.
|
|
let task = Form::from_form_items(&mut FormItems::from(""));
|
|
assert_eq!(task, Ok(Form { }));
|
|
}
|