Struct async_utf8_decoder::Utf8Decoder [−][src]
pub struct Utf8Decoder<R> { /* fields omitted */ }
Implementations
impl<R> Utf8Decoder<R>
[src]
impl<R> Utf8Decoder<R>
[src]pub fn with_capacity(capacity: usize, reader: R) -> Self
[src]
pub fn with_capacity(capacity: usize, reader: R) -> Self
[src]Create a new incremental UTF-8 decoder from reader
with specified capacity
pub fn into_inner(self) -> R
[src]
pub fn into_inner(self) -> R
[src]Consumes this decoder, returning the underlying reader.
Trait Implementations
impl<R> Stream for Utf8Decoder<R> where
R: AsyncRead + Unpin,
[src]
impl<R> Stream for Utf8Decoder<R> where
R: AsyncRead + Unpin,
[src]impl<'__pin, R> Unpin for Utf8Decoder<R> where
__Origin<'__pin, R>: Unpin,
[src]
__Origin<'__pin, R>: Unpin,
Auto Trait Implementations
impl<R> RefUnwindSafe for Utf8Decoder<R> where
R: RefUnwindSafe,
R: RefUnwindSafe,
impl<R> Send for Utf8Decoder<R> where
R: Send,
R: Send,
impl<R> Sync for Utf8Decoder<R> where
R: Sync,
R: Sync,
impl<R> UnwindSafe for Utf8Decoder<R> where
R: UnwindSafe,
R: UnwindSafe,
Blanket Implementations
impl<T> BorrowMut<T> for T where
T: ?Sized,
[src]
impl<T> BorrowMut<T> for T where
T: ?Sized,
[src]pub fn borrow_mut(&mut self) -> &mut T
[src]
pub fn borrow_mut(&mut self) -> &mut T
[src]Mutably borrows from an owned value. Read more