rustiful 0.1.0

This crate is for creating a JSONAPI backend, backed by Iron.
1
2
3
4
5
6
7
8
9
10
extern crate iron;

use self::iron::prelude::*;
use std;

pub trait FromRequest: Sized {
    type Error: std::error::Error + Send;

    fn from_request(request: &Request) -> Result<Self, Self::Error>;
}