Struct utf8::BufReadDecoder [−][src]
Wraps a std::io::BufRead
buffered byte stream and decode it as UTF-8.
Implementations
impl<B: BufRead> BufReadDecoder<B>
[src]
pub fn read_to_string_lossy(buf_read: B) -> Result<String>
[src]
This is to Read::read_to_string
what String::from_utf8_lossy
is to String::from_utf8
.
pub fn new(buf_read: B) -> Self
[src]
pub fn next_lossy(&mut self) -> Option<Result<&str>>
[src]
Same as BufReadDecoder::next_strict
, but replace UTF-8 errors with U+FFFD.
pub fn next_strict(&mut self) -> Option<Result<&str, BufReadDecoderError<'_>>>
[src]
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,
B: RefUnwindSafe,
impl<B> Send for BufReadDecoder<B> where
B: Send,
B: Send,
impl<B> Sync for BufReadDecoder<B> where
B: Sync,
B: Sync,
impl<B> Unpin for BufReadDecoder<B> where
B: Unpin,
B: Unpin,
impl<B> UnwindSafe for BufReadDecoder<B> where
B: UnwindSafe,
B: UnwindSafe,
Blanket Implementations
impl<T> Any for T where
T: 'static + ?Sized,
[src]
T: 'static + ?Sized,
impl<T> Borrow<T> for T where
T: ?Sized,
[src]
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
[src]
T: ?Sized,
pub fn borrow_mut(&mut self) -> &mut T
[src]
impl<T> From<T> for T
[src]
impl<T, U> Into<U> for T where
U: From<T>,
[src]
U: From<T>,
impl<T, U> TryFrom<U> for T where
U: Into<T>,
[src]
U: Into<T>,
type Error = Infallible
The type returned in the event of a conversion error.
pub fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>
[src]
impl<T, U> TryInto<U> for T where
U: TryFrom<T>,
[src]
U: TryFrom<T>,