Ease simplifies the task of writing REST clients. Requests are constructed with an easy to use builder pattern and JSON responses can be automatically deserialised into a matching struct.
Make a GET call and print the result: ```rust extern crate ease;
use ease::{Url, RestClient};
fn main() { let url = Url::parse("http://httpbin.org/get").unwrap(); println!("{}", RestClient::new(url) .get() .unwrap() ); } ```
Make a POST call, parse the JSON reply in a struct, and print the struct: ```rust
extern crate serde; extern crate ease;
use std::collections::HashMap; use ease::{Url, RestClient};
struct Response {
args: HashMap
fn main() {
let url = Url::parse("http://httpbin.org/post").unwrap();
println!("{:?}",
RestClient::new(url)
.postjsonas::
Documentation is available online and can be built with cargo doc
for a local copy.
MIT