[][src]Struct weezl::encode::IntoStream

pub struct IntoStream<'d, W> { /* fields omitted */ }

A encoding stream sink.

See Encoder::into_stream on how to create this type and more information.

Implementations

impl<W: Write, '_> IntoStream<'_, W>[src]

pub fn encode(&mut self, read: impl BufRead) -> AllResult[src]

Encode data from a reader.

This will drain the supplied reader. It will not encode an end marker after all data has been processed.

pub fn encode_all(self, read: impl BufRead) -> AllResult[src]

Encode data from a reader and an end marker.

Auto Trait Implementations

impl<'d, W> !RefUnwindSafe for IntoStream<'d, W>

impl<'d, W> Send for IntoStream<'d, W> where
    W: Send

impl<'d, W> !Sync for IntoStream<'d, W>

impl<'d, W> Unpin for IntoStream<'d, W> where
    W: Unpin

impl<'d, W> !UnwindSafe for IntoStream<'d, W>

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.