scrappy-client-0.0.1 doesn't have any documentation.
An HTTP Client
use ;
use System;
use Client;
async
An HTTP Client
use futures::future::{lazy, Future};
use scrappy_rt::System;
use scrappy_client::Client;
#[scrappy_rt::main]
async fn main() {
let mut client = Client::default();
let response = client.get("http://www.rust-lang.org") // <- Create request builder
.header("User-Agent", "scrappy-web")
.send() // <- Send http request
.await;
println!("Response: {:?}", response);
}