Struct aws_sdk_rust::aws::common::request::HttpResponse [] [src]

pub struct HttpResponse {
    pub status: u16,
    pub body: String,
    pub body_buffer: Vec<u8>,
    pub is_body: bool,
    pub headers: HashMap<String, String>,
}

Wraps the Hyper Response that comes back from AWS S3.

All HTTP calls are sent from here.

Fields

HTTP status code

XML payload

[]

Unsorted list of header attributes

Trait Implementations

impl Debug for HttpResponse
[src]

[]

Formats the value using the given formatter.

impl Default for HttpResponse
[src]

[]

Returns the "default value" for a type. Read more

impl Decodable for HttpResponse
[src]

[]

Deserialize a value using a Decoder.

impl Encodable for HttpResponse
[src]

[]

Serialize a value using an Encoder.