Struct sentry_types::protocol::v7::Request[][src]

pub struct Request {
    pub url: Option<Url>,
    pub method: Option<String>,
    pub data: Option<String>,
    pub query_string: Option<String>,
    pub cookies: Option<String>,
    pub headers: Map<String, String>,
    pub env: Map<String, String>,
}

Represents http request data.

Fields

The current URL of the request.

The HTTP request method.

Optionally some associated request data (human readable)

Optionally the encoded query string.

An encoded cookie string if available.

HTTP request headers.

Optionally a CGI/WSGI etc. environment dictionary.

Trait Implementations

impl Debug for Request
[src]

Formats the value using the given formatter. Read more

impl Default for Request
[src]

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

impl Clone for Request
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. 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