Struct http_test_server::Request[][src]

pub struct Request {
    pub url: String,
    pub method: String,
    pub headers: HashMap<String, String>,
}

Request information

this contains basic information about a request received.

Fields

Request URL

HTTP method

Request headers

Trait Implementations

impl Debug for Request
[src]

Formats the value using the given formatter. Read more

impl PartialEq for Request
[src]

This method tests for self and other values to be equal, and is used by ==. Read more

This method tests for !=.

Auto Trait Implementations

impl Send for Request

impl Sync for Request