pub trait ClientResponse {
    fn body(&self) -> &[u8]Notable traits for &[u8]impl Read for &[u8]impl Write for &mut [u8];
    fn status(&self) -> HttpStatusCode;
    fn header(&self, key: &str) -> Option<String>;
}

Required Methods

Implementors