[][src]Struct chunked_transfer::Encoder

pub struct Encoder<W> where
    W: Write
{ /* fields omitted */ }

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");

Implementations

impl<W> Encoder<W> where
    W: Write
[src]

pub fn new(output: W) -> Encoder<W>

Notable traits for Encoder<W>

impl<W> Write for Encoder<W> where
    W: Write
[src]

pub fn with_chunks_size(output: W, chunks: usize) -> Encoder<W>

Notable traits for Encoder<W>

impl<W> Write for Encoder<W> where
    W: Write
[src]

pub fn with_flush_after_write(output: W) -> Encoder<W>

Notable traits for Encoder<W>

impl<W> Write for Encoder<W> where
    W: Write
[src]

Trait Implementations

impl<W> Drop for Encoder<W> where
    W: Write
[src]

impl<W> Write for Encoder<W> where
    W: Write
[src]

Auto Trait Implementations

impl<W> RefUnwindSafe for Encoder<W> where
    W: RefUnwindSafe

impl<W> Send for Encoder<W> where
    W: Send

impl<W> Sync for Encoder<W> where
    W: Sync

impl<W> Unpin for Encoder<W> where
    W: Unpin

impl<W> UnwindSafe for Encoder<W> where
    W: UnwindSafe

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, 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.