Struct weezl::encode::IntoAsync

source ·
pub struct IntoAsync<'d, W> { /* private fields */ }
Expand description

An async decoding sink.

See Encoder::into_async on how to create this type.

Implementations§

source§

impl<'d, W: AsyncWrite + Unpin> IntoAsync<'d, W>

source

pub async fn encode(&mut self, read: impl AsyncBufRead) -> StreamResult

Encode data from a reader.

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

source

pub async fn encode_all(self, read: impl AsyncBufRead) -> StreamResult

Encode data from a reader and an end marker.

source

pub fn set_buffer_size(&mut self, size: usize)

Set the size of the intermediate decode buffer.

A buffer of this size is allocated to hold one part of the decoded stream when no buffer is available and any decoding method is called. No buffer is allocated if set_buffer has been called. The buffer is reused.

§Panics

This method panics if size is 0.

source

pub fn set_buffer(&mut self, buffer: &'d mut [u8])

Use a particular buffer as an intermediate decode buffer.

Calling this sets or replaces the buffer. When a buffer has been set then it is used instead of dynamically allocating a buffer. Note that the size of the buffer is critical for efficient decoding. Some optimization techniques require the buffer to hold one or more previous decoded words. There is also additional overhead from write calls each time the buffer has been filled.

§Panics

This method panics if the buffer is empty.

Auto Trait Implementations§

§

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

§

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

§

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

§

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

§

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

Blanket Implementations§

source§

impl<T> Any for T
where T: 'static + ?Sized,

source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
source§

impl<T> Borrow<T> for T
where T: ?Sized,

source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
source§

impl<T> BorrowMut<T> for T
where T: ?Sized,

source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
source§

impl<T> From<T> for T

source§

fn from(t: T) -> T

Returns the argument unchanged.

source§

impl<T, U> Into<U> for T
where U: From<T>,

source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

source§

impl<T, U> TryFrom<U> for T
where U: Into<T>,

§

type Error = Infallible

The type returned in the event of a conversion error.
source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
source§

impl<T, U> TryInto<U> for T
where U: TryFrom<T>,

§

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

The type returned in the event of a conversion error.
source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.