pub type Response = HttpClientResponse;
pub struct Response { pub status: u16, pub headers: Vec<(String, String)>, pub body: Option<Buffer>, }
status: u16
headers: Vec<(String, String)>
body: Option<Buffer>