Struct chilli::wrappers::Request [] [src]

pub struct Request<'r, 'a, 'b: 'a> {
    pub app: &'r Pencil,
    pub remote_addr: SocketAddr,
    pub method: Method,
    pub headers: Headers,
    pub url: Url,
    pub url_rule: Option<Rule>,
    pub view_args: ViewArgs,
    pub routing_redirect: Option<(String, u16)>,
    pub routing_error: Option<HTTPError>,
    pub extensions_data: TypeMap,
    pub host: Host,
    // some fields omitted
}

Request type.

Fields

The IP address of the remote connection.

The request method.

The headers of the incoming request.

The requested url.

The URL rule that matched the request. This is going to be None if nothing matched.

A dict of view arguments that matched the request.

If matching the URL requests a redirect, this will be the redirect.

If matching the URL failed, this will be the routing error.

Storage for data of extensions.

The server host

Methods

impl<'r, 'a, 'b: 'a> Request<'r, 'a, 'b>
[src]

[src]

Create a Request.

[src]

Get the url adapter for this request.

[src]

Match the request, set the url_rule and view_args field.

[src]

The endpoint that matched the request.

[src]

The current module name.

[src]

The parsed URL parameters.

[src]

Parses the incoming JSON request data.

[src]

The form parameters.

[src]

All uploaded files.

[src]

The headers.

[src]

Requested path.

[src]

Requested path including the query string.

[src]

The host including the port if available.

[src]

The query string.

[src]

The retrieved cookies.

[src]

The request method.

[src]

The remote address of the client.

[src]

URL scheme (http or https)

[src]

Just the host with scheme.

[src]

The current url.

[src]

The current url without the query string.

[src]

Whether the request is secure (https).

Trait Implementations

impl<'r, 'a, 'b: 'a> Debug for Request<'r, 'a, 'b>
[src]

[src]

Formats the value using the given formatter. Read more

impl<'r, 'a, 'b: 'a> Read for Request<'r, 'a, 'b>
[src]

[src]

Pull some bytes from this source into the specified buffer, returning how many bytes were read. Read more

[src]

🔬 This is a nightly-only experimental API. (read_initializer)

Determines if this Reader can work with buffers of uninitialized memory. Read more

1.0.0
[src]

Read all bytes until EOF in this source, placing them into buf. Read more

1.0.0
[src]

Read all bytes until EOF in this source, appending them to buf. Read more

1.6.0
[src]

Read the exact number of bytes required to fill buf. Read more

Important traits for &'a mut W
1.0.0
[src]

Creates a "by reference" adaptor for this instance of Read. Read more

Important traits for Bytes<R>
1.0.0
[src]

Transforms this Read instance to an [Iterator] over its bytes. Read more

Important traits for Chars<R>
[src]

🔬 This is a nightly-only experimental API. (io)

the semantics of a partial read/write of where errors happen is currently unclear and may change

Transforms this Read instance to an [Iterator] over [char]s. Read more

Important traits for Chain<T, U>
1.0.0
[src]

Creates an adaptor which will chain this stream with another. Read more

Important traits for Take<T>
1.0.0
[src]

Creates an adaptor which will read at most limit bytes from it. Read more

Auto Trait Implementations

impl<'r, 'a, 'b> !Send for Request<'r, 'a, 'b>

impl<'r, 'a, 'b> !Sync for Request<'r, 'a, 'b>