Struct rocket::http::hyper::Request [−][src]
pub struct Request<'a, 'b> where
'b: 'a, {
pub remote_addr: SocketAddr,
pub method: Method,
pub headers: Headers,
pub uri: RequestUri,
pub version: HttpVersion,
// some fields omitted
}
Expand description
A request bundles several parts of an incoming NetworkStream
, given to a Handler
.
Fields
remote_addr: SocketAddr
The IP address of the remote connection.
method: Method
The Method
, such as Get
, Post
, etc.
headers: Headers
The headers of the incoming request.
uri: RequestUri
The target request-uri for this request.
version: HttpVersion
The version of HTTP for this request.
Implementations
pub fn new(
stream: &'a mut BufReader<&'b mut (dyn NetworkStream + 'static)>,
addr: SocketAddr
) -> Result<Request<'a, 'b>, Error>
pub fn new(
stream: &'a mut BufReader<&'b mut (dyn NetworkStream + 'static)>,
addr: SocketAddr
) -> Result<Request<'a, 'b>, Error>
Create a new Request, reading the StartLine and Headers so they are immediately useful.
Set the read timeout of the underlying NetworkStream.
Get a reference to the underlying NetworkStream
.
Get a reference to the underlying Ssl stream, if connected over HTTPS.
This is actually just an alias for downcast_ref
.
pub fn deconstruct(
self
) -> (SocketAddr, Method, Headers, RequestUri, HttpVersion, HttpReader<&'a mut BufReader<&'b mut (dyn NetworkStream + 'static)>>)
pub fn deconstruct(
self
) -> (SocketAddr, Method, Headers, RequestUri, HttpVersion, HttpReader<&'a mut BufReader<&'b mut (dyn NetworkStream + 'static)>>)
Deconstruct a Request into its constituent parts.
Trait Implementations
Pull some bytes from this source into the specified buffer, returning how many bytes were read. Read more
Like read
, except that it reads into a slice of buffers. Read more
can_vector
)Determines if this Read
er has an efficient read_vectored
implementation. Read more
read_initializer
)Determines if this Read
er can work with buffers of uninitialized
memory. Read more
Read all bytes until EOF in this source, placing them into buf
. Read more
Read all bytes until EOF in this source, appending them to buf
. Read more
Read the exact number of bytes required to fill buf
. Read more
Creates a “by reference” adapter for this instance of Read
. Read more
Creates an adapter which will chain this stream with another. Read more
Auto Trait Implementations
impl<'a, 'b> !RefUnwindSafe for Request<'a, 'b>
impl<'a, 'b> !UnwindSafe for Request<'a, 'b>
Blanket Implementations
Mutably borrows from an owned value. Read more
Reads an unsigned 8 bit integer from the underlying reader. Read more
Reads a signed 8 bit integer from the underlying reader. Read more
Reads an unsigned 16 bit integer from the underlying reader. Read more
Reads a signed 16 bit integer from the underlying reader. Read more
Reads an unsigned 24 bit integer from the underlying reader. Read more
Reads a signed 24 bit integer from the underlying reader. Read more
Reads an unsigned 32 bit integer from the underlying reader. Read more
Reads a signed 32 bit integer from the underlying reader. Read more
Reads an unsigned 48 bit integer from the underlying reader. Read more
Reads a signed 48 bit integer from the underlying reader. Read more
Reads an unsigned 64 bit integer from the underlying reader. Read more
Reads a signed 64 bit integer from the underlying reader. Read more
Reads an unsigned 128 bit integer from the underlying reader. Read more
Reads a signed 128 bit integer from the underlying reader. Read more
Reads an unsigned n-bytes integer from the underlying reader. Read more
Reads a signed n-bytes integer from the underlying reader. Read more
Reads an unsigned n-bytes integer from the underlying reader.
Reads a signed n-bytes integer from the underlying reader.
Reads a IEEE754 single-precision (4 bytes) floating point number from the underlying reader. Read more
Reads a IEEE754 double-precision (8 bytes) floating point number from the underlying reader. Read more
Reads a sequence of unsigned 16 bit integers from the underlying reader. Read more
Reads a sequence of unsigned 32 bit integers from the underlying reader. Read more
Reads a sequence of unsigned 64 bit integers from the underlying reader. Read more
Reads a sequence of unsigned 128 bit integers from the underlying reader. Read more
Reads a sequence of signed 8 bit integers from the underlying reader. Read more
Reads a sequence of signed 16 bit integers from the underlying reader. Read more
Reads a sequence of signed 32 bit integers from the underlying reader. Read more
Reads a sequence of signed 64 bit integers from the underlying reader. Read more
Reads a sequence of signed 128 bit integers from the underlying reader. Read more
Reads a sequence of IEEE754 single-precision (4 bytes) floating point numbers from the underlying reader. Read more
Reads a sequence of IEEE754 double-precision (8 bytes) floating point numbers from the underlying reader. Read more