Struct rocket::http::hyper::Response [−][src]
pub struct Response<'a, W = Fresh> where
W: Any, { pub version: HttpVersion, // some fields omitted }
Expand description
The outgoing half for a Tcp connection, created by a Server and given to a Handler.
The default StatusCode for a Response is 200 OK.
There is a Drop implementation for Response that will automatically
write the head and flush the body, if the handler has not already done so,
so that the server doesn’t accidentally leave dangling requests.
Fields
version: HttpVersionThe HTTP version of this response.
Implementations
impl<'a, W> Response<'a, W> where
W: Any, [src]
impl<'a, W> Response<'a, W> where
W: Any, [src]pub fn status(&self) -> StatusCode[src]
pub fn status(&self) -> StatusCode[src]The status of this response.
pub fn construct(
version: HttpVersion,
body: HttpWriter<&'a mut (dyn Write + 'a)>,
status: StatusCode,
headers: &'a mut Headers
) -> Response<'a, Fresh>ⓘ[src]
pub fn construct(
version: HttpVersion,
body: HttpWriter<&'a mut (dyn Write + 'a)>,
status: StatusCode,
headers: &'a mut Headers
) -> Response<'a, Fresh>ⓘ[src]Construct a Response from its constituent parts.
pub fn deconstruct(
self
) -> (HttpVersion, HttpWriter<&'a mut (dyn Write + 'a)>, StatusCode, &'a mut Headers)[src]
pub fn deconstruct(
self
) -> (HttpVersion, HttpWriter<&'a mut (dyn Write + 'a)>, StatusCode, &'a mut Headers)[src]Deconstruct this Response into its constituent parts.
impl<'a> Response<'a, Fresh>[src]
impl<'a> Response<'a, Fresh>[src]pub fn new(
stream: &'a mut (dyn Write + 'a),
headers: &'a mut Headers
) -> Response<'a, Fresh>ⓘ[src]
pub fn new(
stream: &'a mut (dyn Write + 'a),
headers: &'a mut Headers
) -> Response<'a, Fresh>ⓘ[src]Creates a new Response that can be used to write to a network stream.
pub fn send(self, body: &[u8]) -> Result<(), Error>[src]
pub fn send(self, body: &[u8]) -> Result<(), Error>[src]Writes the body and ends the response.
This is a shortcut method for when you have a response with a fixed
size, and would only need a single write call normally.
Example
fn handler(res: Response) { res.send(b"Hello World!").unwrap(); }
The above is the same, but shorter, than the longer:
use std::io::Write; use hyper::header::ContentLength; fn handler(mut res: Response) { let body = b"Hello World!"; res.headers_mut().set(ContentLength(body.len() as u64)); let mut res = res.start().unwrap(); res.write_all(body).unwrap(); }
pub fn start(self) -> Result<Response<'a, Streaming>, Error>[src]
pub fn start(self) -> Result<Response<'a, Streaming>, Error>[src]Consume this Response
pub fn status_mut(&mut self) -> &mut StatusCode[src]
pub fn status_mut(&mut self) -> &mut StatusCode[src]Get a mutable reference to the status.
pub fn headers_mut(&mut self) -> &mut Headers[src]
pub fn headers_mut(&mut self) -> &mut Headers[src]Get a mutable reference to the Headers.
Trait Implementations
impl<'a> Write for Response<'a, Streaming>[src]
impl<'a> Write for Response<'a, Streaming>[src]pub fn write(&mut self, msg: &[u8]) -> Result<usize, Error>[src]
pub fn write(&mut self, msg: &[u8]) -> Result<usize, Error>[src]Write a buffer into this writer, returning how many bytes were written. Read more
pub fn flush(&mut self) -> Result<(), Error>[src]
pub fn flush(&mut self) -> Result<(), Error>[src]Flush this output stream, ensuring that all intermediately buffered contents reach their destination. Read more
fn is_write_vectored(&self) -> bool[src]
fn is_write_vectored(&self) -> bool[src]can_vector)Determines if this Writer has an efficient write_vectored
implementation. Read more
fn write_all(&mut self, buf: &[u8]) -> Result<(), Error>1.0.0[src]
fn write_all(&mut self, buf: &[u8]) -> Result<(), Error>1.0.0[src]Attempts to write an entire buffer into this writer. Read more
fn write_all_vectored(&mut self, bufs: &mut [IoSlice<'_>]) -> Result<(), Error>[src]
fn write_all_vectored(&mut self, bufs: &mut [IoSlice<'_>]) -> Result<(), Error>[src]write_all_vectored)Attempts to write multiple buffers into this writer. Read more
Auto Trait Implementations
impl<'a, W = Fresh> !RefUnwindSafe for Response<'a, W>
impl<'a, W = Fresh> !Send for Response<'a, W>
impl<'a, W = Fresh> !Sync for Response<'a, W>
impl<'a, W> Unpin for Response<'a, W> where
W: Unpin,
W: Unpin,
impl<'a, W = Fresh> !UnwindSafe for Response<'a, W>
Blanket Implementations
impl<T> BorrowMut<T> for T where
T: ?Sized, [src]
impl<T> BorrowMut<T> for T where
T: ?Sized, [src]pub fn borrow_mut(&mut self) -> &mut T[src]
pub fn borrow_mut(&mut self) -> &mut T[src]Mutably borrows from an owned value. Read more
impl<T> IntoCollection<T> for T[src]
impl<T> IntoCollection<T> for T[src]pub fn into_collection<A>(self) -> SmallVec<A> where
A: Array<Item = T>, [src]
pub fn into_collection<A>(self) -> SmallVec<A> where
A: Array<Item = T>, [src]Converts self into a collection.
pub fn mapped<U, F, A>(self, f: F) -> SmallVec<A> where
F: FnMut(T) -> U,
A: Array<Item = U>, [src]
F: FnMut(T) -> U,
A: Array<Item = U>,
impl<T> Same<T> for T
impl<T> Same<T> for Ttype Output = T
type Output = TShould always be Self
impl<V, T> VZip<V> for T where
V: MultiLane<T>,
impl<V, T> VZip<V> for T where
V: MultiLane<T>, pub fn vzip(self) -> V
impl<W> WriteBytesExt for W where
W: Write + ?Sized,
impl<W> WriteBytesExt for W where
W: Write + ?Sized, fn write_u8(&mut self, n: u8) -> Result<(), Error>
fn write_u8(&mut self, n: u8) -> Result<(), Error>Writes an unsigned 8 bit integer to the underlying writer. Read more
fn write_i8(&mut self, n: i8) -> Result<(), Error>
fn write_i8(&mut self, n: i8) -> Result<(), Error>Writes a signed 8 bit integer to the underlying writer. Read more
fn write_u16<T>(&mut self, n: u16) -> Result<(), Error> where
T: ByteOrder,
fn write_u16<T>(&mut self, n: u16) -> Result<(), Error> where
T: ByteOrder, Writes an unsigned 16 bit integer to the underlying writer. Read more
fn write_i16<T>(&mut self, n: i16) -> Result<(), Error> where
T: ByteOrder,
fn write_i16<T>(&mut self, n: i16) -> Result<(), Error> where
T: ByteOrder, Writes a signed 16 bit integer to the underlying writer. Read more
fn write_u24<T>(&mut self, n: u32) -> Result<(), Error> where
T: ByteOrder,
fn write_u24<T>(&mut self, n: u32) -> Result<(), Error> where
T: ByteOrder, Writes an unsigned 24 bit integer to the underlying writer. Read more
fn write_i24<T>(&mut self, n: i32) -> Result<(), Error> where
T: ByteOrder,
fn write_i24<T>(&mut self, n: i32) -> Result<(), Error> where
T: ByteOrder, Writes a signed 24 bit integer to the underlying writer. Read more
fn write_u32<T>(&mut self, n: u32) -> Result<(), Error> where
T: ByteOrder,
fn write_u32<T>(&mut self, n: u32) -> Result<(), Error> where
T: ByteOrder, Writes an unsigned 32 bit integer to the underlying writer. Read more
fn write_i32<T>(&mut self, n: i32) -> Result<(), Error> where
T: ByteOrder,
fn write_i32<T>(&mut self, n: i32) -> Result<(), Error> where
T: ByteOrder, Writes a signed 32 bit integer to the underlying writer. Read more
fn write_u48<T>(&mut self, n: u64) -> Result<(), Error> where
T: ByteOrder,
fn write_u48<T>(&mut self, n: u64) -> Result<(), Error> where
T: ByteOrder, Writes an unsigned 48 bit integer to the underlying writer. Read more
fn write_i48<T>(&mut self, n: i64) -> Result<(), Error> where
T: ByteOrder,
fn write_i48<T>(&mut self, n: i64) -> Result<(), Error> where
T: ByteOrder, Writes a signed 48 bit integer to the underlying writer. Read more
fn write_u64<T>(&mut self, n: u64) -> Result<(), Error> where
T: ByteOrder,
fn write_u64<T>(&mut self, n: u64) -> Result<(), Error> where
T: ByteOrder, Writes an unsigned 64 bit integer to the underlying writer. Read more
fn write_i64<T>(&mut self, n: i64) -> Result<(), Error> where
T: ByteOrder,
fn write_i64<T>(&mut self, n: i64) -> Result<(), Error> where
T: ByteOrder, Writes a signed 64 bit integer to the underlying writer. Read more
fn write_u128<T>(&mut self, n: u128) -> Result<(), Error> where
T: ByteOrder,
fn write_u128<T>(&mut self, n: u128) -> Result<(), Error> where
T: ByteOrder, Writes an unsigned 128 bit integer to the underlying writer.
fn write_i128<T>(&mut self, n: i128) -> Result<(), Error> where
T: ByteOrder,
fn write_i128<T>(&mut self, n: i128) -> Result<(), Error> where
T: ByteOrder, Writes a signed 128 bit integer to the underlying writer.
fn write_uint<T>(&mut self, n: u64, nbytes: usize) -> Result<(), Error> where
T: ByteOrder,
fn write_uint<T>(&mut self, n: u64, nbytes: usize) -> Result<(), Error> where
T: ByteOrder, Writes an unsigned n-bytes integer to the underlying writer. Read more
fn write_int<T>(&mut self, n: i64, nbytes: usize) -> Result<(), Error> where
T: ByteOrder,
fn write_int<T>(&mut self, n: i64, nbytes: usize) -> Result<(), Error> where
T: ByteOrder, Writes a signed n-bytes integer to the underlying writer. Read more
fn write_uint128<T>(&mut self, n: u128, nbytes: usize) -> Result<(), Error> where
T: ByteOrder,
fn write_uint128<T>(&mut self, n: u128, nbytes: usize) -> Result<(), Error> where
T: ByteOrder, Writes an unsigned n-bytes integer to the underlying writer. Read more
fn write_int128<T>(&mut self, n: i128, nbytes: usize) -> Result<(), Error> where
T: ByteOrder,
fn write_int128<T>(&mut self, n: i128, nbytes: usize) -> Result<(), Error> where
T: ByteOrder, Writes a signed n-bytes integer to the underlying writer. Read more