[−][src]Struct actix_web::Request
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 stream_extensions(&self) -> Option<&Extensions>[src]
pub fn stream_extensions(&self) -> Option<&Extensions>Io stream extensions
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.
impl Debug for Request[src]
impl Debug for RequestAuto Trait Implementations
Blanket Implementations
impl<T> From for T[src]
impl<T> From for Timpl<T, U> Into for T where
U: From<T>, [src]
impl<T, U> Into for T where
U: From<T>, impl<T, U> TryFrom for T where
T: From<U>, [src]
impl<T, U> TryFrom for T where
T: From<U>, type Error = !
try_from)The type returned in the event of a conversion error.
fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>[src]
fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>try_from)Performs the conversion.
impl<T> Borrow for T where
T: ?Sized, [src]
impl<T> Borrow for T where
T: ?Sized, impl<T> BorrowMut for T where
T: ?Sized, [src]
impl<T> BorrowMut for T where
T: ?Sized, fn borrow_mut(&mut self) -> &mut T[src]
fn borrow_mut(&mut self) -> &mut TMutably borrows from an owned value. Read more
impl<T, U> TryInto for T where
U: TryFrom<T>, [src]
impl<T, U> TryInto for T where
U: TryFrom<T>, type Error = <U as TryFrom<T>>::Error
try_from)The type returned in the event of a conversion error.
fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>[src]
fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>try_from)Performs the conversion.
impl<T> Any for T where
T: 'static + ?Sized, [src]
impl<T> Any for T where
T: 'static + ?Sized, fn get_type_id(&self) -> TypeId[src]
fn get_type_id(&self) -> TypeId🔬 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
impl<T> Erased for T