[][src]Struct http_serve::BodyWriter

pub struct BodyWriter<D, E>(_)
where
    D: From<Vec<u8>> + Send + 'static,
    E: Send + 'static
;

A std::io::Write implementation that makes a chunked hyper response body stream. Automatically applies gzip content encoding if requested by the client.

The stream is infinitely buffered; calls to write and flush never block. flush thus is a hint that data should be sent to the client as soon as possible, but this shouldn't be expected to happen before it returns. write and flush may return error; this indicates that the client certainly won't receive any additional bytes, so the calling code should stop producing them.

The infinite buffering avoids the need for calling code to deal with backpressure via futures or blocking. Many applications anyway produce output while holding a lock or database transaction that should finish quickly, so backpressure must be ignored anyway.

On drop, the stream will be "finished" (for gzip, this writes a special footer). There's no way to know the complete stream was written successfully. It's inherent in the combination of HTTP / TCP / Unix sockets / hyper anyway that only the client knows this.

Implementations

impl<D, E> BodyWriter<D, E> where
    D: From<Vec<u8>> + Send + 'static,
    E: Send + 'static, 
[src]

pub fn abort(&mut self, error: E)[src]

Causes the HTTP connection to be dropped abruptly.

Trait Implementations

impl<D, E> Write for BodyWriter<D, E> where
    D: From<Vec<u8>> + Send + 'static,
    E: Send + 'static, 
[src]

Auto Trait Implementations

impl<D, E> !RefUnwindSafe for BodyWriter<D, E>

impl<D, E> Send for BodyWriter<D, E>

impl<D, E> Sync for BodyWriter<D, E>

impl<D, E> Unpin for BodyWriter<D, E>

impl<D, E> !UnwindSafe for BodyWriter<D, E>

Blanket Implementations

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

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

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

impl<T> From<T> for T[src]

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

impl<T> Sealed<T> for T where
    T: ?Sized

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

type Error = Infallible

The type returned in the event of a conversion error.

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

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.