talap 0.1.2

Easy to send HTTP/HTTPS requests
Documentation
use std::collections::HashMap;

/// The http response.
#[derive(Debug)]
pub struct HttpResponse {
    pub status_code: u16,
    pub headers: HashMap<String, String>,
    pub body: Vec<u8>,
}