Struct body_image::client::RequestRecord [] [src]

pub struct RequestRecord { /* fields omitted */ }

An http::Request and recording. Note that other important getter methods for RequestRecord are found in trait implementation RequestRecorded.

Limitations: This can't be Clone, because http::Request<client::hyper::Body> isn't Clone.

Methods

impl RequestRecord
[src]

[src]

The HTTP method (verb), e.g. GET, POST, etc.

[src]

The complete URL as used in the request.

[src]

Return the HTTP request.

Trait Implementations

impl Debug for RequestRecord
[src]

[src]

Formats the value using the given formatter. Read more

impl RequestRecorded for RequestRecord
[src]

[src]

Map of HTTP request headers.

[src]

Request body (e.g for HTTP POST, etc.) which may or may not be RAM resident. Read more

Auto Trait Implementations

impl Send for RequestRecord

impl Sync for RequestRecord