Struct utf8::BufReadDecoder

source ·
pub struct BufReadDecoder<B: BufRead> {
    buf_read: B,
    bytes_consumed: usize,
    incomplete: Incomplete,
}
Expand description

Wraps a std::io::BufRead buffered byte stream and decode it as UTF-8.

Fields§

§buf_read: B§bytes_consumed: usize§incomplete: Incomplete

Implementations§

source§

impl<B: BufRead> BufReadDecoder<B>

source

pub fn read_to_string_lossy(buf_read: B) -> Result<String>

This is to Read::read_to_string what String::from_utf8_lossy is to String::from_utf8.

source

pub fn new(buf_read: B) -> Self

source

pub fn next_lossy(&mut self) -> Option<Result<&str>>

Same as BufReadDecoder::next_strict, but replace UTF-8 errors with U+FFFD.

source

pub fn next_strict(&mut self) -> Option<Result<&str, BufReadDecoderError<'_>>>

Decode and consume the next chunk of UTF-8 input.

This method is intended to be called repeatedly until it returns None, which represents EOF from the underlying byte stream. This is similar to Iterator::next, except that decoded chunks borrow the decoder (~iterator) so they need to be handled or copied before the next chunk can start decoding.

Auto Trait Implementations§

§

impl<B> RefUnwindSafe for BufReadDecoder<B>where B: RefUnwindSafe,

§

impl<B> Send for BufReadDecoder<B>where B: Send,

§

impl<B> Sync for BufReadDecoder<B>where B: Sync,

§

impl<B> Unpin for BufReadDecoder<B>where B: Unpin,

§

impl<B> UnwindSafe for BufReadDecoder<B>where B: UnwindSafe,

Blanket Implementations§

source§

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

source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
source§

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

source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
source§

impl<T> BorrowMut<T> for Twhere 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 Twhere 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 Twhere 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 Twhere 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.