usecrate::HttpStatusCode;/// The response made from [`ClientRequest`](`crate::ClientRequest`).
pubtraitClientResponse{/// The body of the response.
fnbody(&self)->&[u8];/// The HTTP Status Code made from the response.
fnstatus(&self)-> HttpStatusCode;/// The header value from the given key.
fnheader(&self, key:&str)->Option<String>;}