Struct scrupy::downloader::Response [] [src]

pub struct Response {
    pub url: Url,
    pub headers: Headers,
    pub body: Vec<u8>,
}

A simple ok response including url, headers and body.

Fields

The target url from the original Request

The reponse header

The response body. Can be either text or binary.