[−][src]Struct chunked_transfer::Encoder
Splits the incoming data into HTTP chunks.
Example
use chunked_transfer::Encoder; use std::io::Write; let mut decoded = "hello world"; let mut encoded: Vec<u8> = vec![]; { let mut encoder = Encoder::with_chunks_size(&mut encoded, 5); encoder.write_all(decoded.as_bytes()); } assert_eq!(encoded, b"5\r\nhello\r\n5\r\n worl\r\n1\r\nd\r\n0\r\n\r\n");
Methods
impl<W> Encoder<W> where
W: Write,
[src]
W: Write,
ⓘImportant traits for Encoder<W>pub fn new(output: W) -> Encoder<W>
[src]
ⓘImportant traits for Encoder<W>
ⓘImportant traits for Encoder<W>pub fn with_chunks_size(output: W, chunks: usize) -> Encoder<W>
[src]
ⓘImportant traits for Encoder<W>
Trait Implementations
impl<W> Drop for Encoder<W> where
W: Write,
[src]
W: Write,
impl<W> Write for Encoder<W> where
W: Write,
[src]
W: Write,
fn write(&mut self, buf: &[u8]) -> IoResult<usize>
[src]
fn flush(&mut self) -> IoResult<()>
[src]
fn write_vectored(&mut self, bufs: &[IoSlice]) -> Result<usize, Error>
1.36.0[src]
Like write
, except that it writes from a slice of buffers. Read more
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_fmt(&mut self, fmt: Arguments) -> Result<(), Error>
1.0.0[src]
Writes a formatted string into this writer, returning any error encountered. Read more
fn by_ref(&mut self) -> &mut Self
1.0.0[src]
Creates a "by reference" adaptor for this instance of Write
. Read more
Auto Trait Implementations
impl<W> Unpin for Encoder<W> where
W: Unpin,
W: Unpin,
impl<W> Sync for Encoder<W> where
W: Sync,
W: Sync,
impl<W> Send for Encoder<W> where
W: Send,
W: Send,
impl<W> UnwindSafe for Encoder<W> where
W: UnwindSafe,
W: UnwindSafe,
impl<W> RefUnwindSafe for Encoder<W> where
W: RefUnwindSafe,
W: RefUnwindSafe,
Blanket Implementations
impl<T> From<T> for T
[src]
impl<T, U> Into<U> for T where
U: From<T>,
[src]
U: From<T>,
impl<T, U> TryFrom<U> for T where
U: Into<T>,
[src]
U: Into<T>,
type Error = Infallible
The type returned in the event of a conversion error.
fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>
[src]
impl<T, U> TryInto<U> for T where
U: TryFrom<T>,
[src]
U: TryFrom<T>,
type Error = <U as TryFrom<T>>::Error
The type returned in the event of a conversion error.
fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>
[src]
impl<T> Borrow<T> for T where
T: ?Sized,
[src]
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
[src]
T: ?Sized,
fn borrow_mut(&mut self) -> &mut T
[src]
impl<T> Any for T where
T: 'static + ?Sized,
[src]
T: 'static + ?Sized,