[][src]Struct actix_web::server::Request

pub struct Request { /* fields omitted */ }

Request's context

Methods

impl Request
[src]

Read the Request Uri.

Read the Request method.

Read the Request Version.

The target path of this Request.

Returns Request's headers.

Returns mutable Request's headers.

Peer socket address

Peer address is actual socket address, if proxy is used in front of actix http server, then peer address would be address of this proxy.

To get client connection information connection_info() method should be used.

Checks if a connection should be kept alive.

Request extensions

Mutable reference to a the request's extensions

Check if request requires connection upgrade

Get ConnectionInfo for the correct request.

Io stream extensions

Server settings

Trait Implementations

impl HttpMessage for Request
[src]

Type of message payload stream

Read the message headers.

Message payload stream

Read the request content type. If request does not contain Content-Type header, empty str get returned. Read more

Get content type encoding Read more

Convert the request content type to a known mime type.

Check if request has chunked transfer encoding

Load http message body. Read more

Parse application/x-www-form-urlencoded encoded request's body. Return UrlEncoded future. Form can be deserialized to any type that implements Deserialize trait from serde. Read more

Parse application/json encoded body. Return JsonBody<T> future. It resolves to a T value. Read more

Return stream to http payload processes as multipart. Read more

Return stream of lines.

impl Debug for Request
[src]

Formats the value using the given formatter. Read more

Auto Trait Implementations

impl !Send for Request

impl !Sync for Request

Blanket Implementations

impl<T> From for T
[src]

Performs the conversion.

impl<T, U> Into for T where
    U: From<T>, 
[src]

Performs the conversion.

impl<T, U> TryFrom for T where
    T: From<U>, 
[src]

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

The type returned in the event of a conversion error.

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

Performs the conversion.

impl<T> Borrow for T where
    T: ?Sized
[src]

Immutably borrows from an owned value. Read more

impl<T> BorrowMut for T where
    T: ?Sized
[src]

Mutably borrows from an owned value. Read more

impl<T, U> TryInto for T where
    U: TryFrom<T>, 
[src]

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

The type returned in the event of a conversion error.

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

Performs the conversion.

impl<T> Any for T where
    T: 'static + ?Sized
[src]

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

this method will likely be replaced by an associated static

Gets the TypeId of self. Read more

impl<T> Erased for T