Struct uhttp_chunked_write::ChunkedWrite [] [src]

pub struct ChunkedWrite<W: Write>(_);

Writes bytes in the HTTP chunked encoding protocol.

When the object goes out of scope the chunked message is terminated and the stream is flushed.

To reduce the number of write syscalls to the underlying stream when using write! or byte-based serialization, wrap the object in a BufWriter, for example BufWriter::new(ChunkedWrite::new(stream)).

Methods

impl<W: Write> ChunkedWrite<W>
[src]

Create a new ChunkedWrite to write into the given stream.

Trait Implementations

impl<W: Write> Write for ChunkedWrite<W>
[src]

Write a buffer into this object, returning how many bytes were written. Read more

Flush this output stream, ensuring that all intermediately buffered contents reach their destination. Read more

Attempts to write an entire buffer into this write. Read more

Writes a formatted string into this writer, returning any error encountered. Read more

Creates a "by reference" adaptor for this instance of Write. Read more

impl<W: Write> Drop for ChunkedWrite<W>
[src]

A method called when the value goes out of scope. Read more