Struct actix_web::server::Request [−][src]
pub struct Request { /* fields omitted */ }Request's context
Methods
impl Request[src]
impl Requestpub fn uri(&self) -> &Uri[src]
pub fn uri(&self) -> &UriRead the Request Uri.
pub fn method(&self) -> &Method[src]
pub fn method(&self) -> &MethodRead the Request method.
pub fn version(&self) -> Version[src]
pub fn version(&self) -> VersionRead the Request Version.
pub fn path(&self) -> &str[src]
pub fn path(&self) -> &strThe target path of this Request.
pub fn headers(&self) -> &HeaderMap[src]
pub fn headers(&self) -> &HeaderMapReturns Request's headers.
pub fn headers_mut(&mut self) -> &mut HeaderMap[src]
pub fn headers_mut(&mut self) -> &mut HeaderMapReturns mutable Request's headers.
pub fn peer_addr(&self) -> Option<SocketAddr>[src]
pub fn peer_addr(&self) -> Option<SocketAddr>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.
pub fn keep_alive(&self) -> bool[src]
pub fn keep_alive(&self) -> boolChecks if a connection should be kept alive.
pub fn extensions(&self) -> Ref<Extensions>[src]
pub fn extensions(&self) -> Ref<Extensions>Request extensions
pub fn extensions_mut(&self) -> RefMut<Extensions>[src]
pub fn extensions_mut(&self) -> RefMut<Extensions>Mutable reference to a the request's extensions
pub fn upgrade(&self) -> bool[src]
pub fn upgrade(&self) -> boolCheck if request requires connection upgrade
pub fn connection_info(&self) -> Ref<ConnectionInfo>[src]
pub fn connection_info(&self) -> Ref<ConnectionInfo>Get ConnectionInfo for the correct request.
pub fn server_settings(&self) -> &ServerSettings[src]
pub fn server_settings(&self) -> &ServerSettingsServer settings
Trait Implementations
impl HttpMessage for Request[src]
impl HttpMessage for Requesttype Stream = Payload
Type of message payload stream
fn headers(&self) -> &HeaderMap[src]
fn headers(&self) -> &HeaderMapRead the message headers.
fn payload(&self) -> Payload[src]
fn payload(&self) -> PayloadMessage payload stream
fn content_type(&self) -> &str[src]
fn content_type(&self) -> &strRead the request content type. If request does not contain Content-Type header, empty str get returned. Read more
fn encoding(&self) -> Result<EncodingRef, ContentTypeError>[src]
fn encoding(&self) -> Result<EncodingRef, ContentTypeError>Get content type encoding Read more
fn mime_type(&self) -> Result<Option<Mime>, ContentTypeError>[src]
fn mime_type(&self) -> Result<Option<Mime>, ContentTypeError>Convert the request content type to a known mime type.
fn chunked(&self) -> Result<bool, ParseError>[src]
fn chunked(&self) -> Result<bool, ParseError>Check if request has chunked transfer encoding
fn body(&self) -> MessageBody<Self>[src]
fn body(&self) -> MessageBody<Self>Load http message body. Read more
fn urlencoded<T: DeserializeOwned>(&self) -> UrlEncoded<Self, T>[src]
fn urlencoded<T: DeserializeOwned>(&self) -> UrlEncoded<Self, T>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
fn json<T: DeserializeOwned>(&self) -> JsonBody<Self, T>[src]
fn json<T: DeserializeOwned>(&self) -> JsonBody<Self, T>Parse application/json encoded body. Return JsonBody<T> future. It resolves to a T value. Read more
fn multipart(&self) -> Multipart<Self::Stream>[src]
fn multipart(&self) -> Multipart<Self::Stream>Return stream to http payload processes as multipart. Read more
fn readlines(&self) -> Readlines<Self>[src]
fn readlines(&self) -> Readlines<Self>Return stream of lines.