Struct tendril::stream::Utf8LossyDecoder
source · pub struct Utf8LossyDecoder<Sink, A = NonAtomic>{
pub inner_sink: Sink,
/* private fields */
}
Expand description
A TendrilSink
adaptor that takes bytes, decodes them as UTF-8,
lossily replace ill-formed byte sequences with U+FFFD replacement characters,
and emits Unicode (StrTendril
).
This does not allocate memory: the output is either subtendrils on the input, on inline tendrils for a single code point.
Fields§
§inner_sink: Sink
Implementations§
source§impl<Sink, A> Utf8LossyDecoder<Sink, A>
impl<Sink, A> Utf8LossyDecoder<Sink, A>
Trait Implementations§
source§impl<Sink, A> TendrilSink<Bytes, A> for Utf8LossyDecoder<Sink, A>
impl<Sink, A> TendrilSink<Bytes, A> for Utf8LossyDecoder<Sink, A>
§type Output = <Sink as TendrilSink<UTF8, A>>::Output
type Output = <Sink as TendrilSink<UTF8, A>>::Output
What the overall result of processing is.
source§fn from_iter<I>(self, i: I) -> Self::Output
fn from_iter<I>(self, i: I) -> Self::Output
Consume an iterator of tendrils, processing each item, then finish.
Auto Trait Implementations§
impl<Sink, A> Freeze for Utf8LossyDecoder<Sink, A>where
Sink: Freeze,
impl<Sink, A> RefUnwindSafe for Utf8LossyDecoder<Sink, A>where
Sink: RefUnwindSafe,
A: RefUnwindSafe,
impl<Sink, A> Send for Utf8LossyDecoder<Sink, A>
impl<Sink, A> Sync for Utf8LossyDecoder<Sink, A>
impl<Sink, A> Unpin for Utf8LossyDecoder<Sink, A>
impl<Sink, A> UnwindSafe for Utf8LossyDecoder<Sink, A>where
Sink: UnwindSafe,
A: UnwindSafe,
Blanket Implementations§
source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more