Struct html5ever::tendril::stream::LossyDecoder
source · pub struct LossyDecoder<Sink, A = NonAtomic>{
inner: LossyDecoderInner<Sink, A>,
}
Expand description
A TendrilSink
adaptor that takes bytes, decodes them as the given character encoding,
lossily replace ill-formed byte sequences with U+FFFD replacement characters,
and emits Unicode (StrTendril
).
This allocates new tendrils for encodings other than UTF-8.
Fields§
§inner: LossyDecoderInner<Sink, A>
Implementations§
source§impl<Sink, A> LossyDecoder<Sink, A>
impl<Sink, A> LossyDecoder<Sink, A>
sourcepub fn new_encoding_rs(
encoding: &'static Encoding,
sink: Sink,
) -> LossyDecoder<Sink, A>
pub fn new_encoding_rs( encoding: &'static Encoding, sink: Sink, ) -> LossyDecoder<Sink, A>
Create a new incremental decoder using the encoding_rs crate.
sourcepub fn utf8(sink: Sink) -> LossyDecoder<Sink, A>
pub fn utf8(sink: Sink) -> LossyDecoder<Sink, A>
Create a new incremental decoder for the UTF-8 encoding.
This is useful for content that is known at run-time to be UTF-8
(whereas Utf8LossyDecoder
requires knowning at compile-time.)
sourcepub fn inner_sink(&self) -> &Sink
pub fn inner_sink(&self) -> &Sink
Give a reference to the inner sink.
sourcepub fn inner_sink_mut(&mut self) -> &mut Sink
pub fn inner_sink_mut(&mut self) -> &mut Sink
Give a mutable reference to the inner sink.
Trait Implementations§
source§impl<Sink, A> TendrilSink<Bytes, A> for LossyDecoder<Sink, A>
impl<Sink, A> TendrilSink<Bytes, A> for LossyDecoder<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 LossyDecoder<Sink, A>where
Sink: Freeze,
impl<Sink, A> RefUnwindSafe for LossyDecoder<Sink, A>where
Sink: RefUnwindSafe,
A: RefUnwindSafe,
impl<Sink, A> Send for LossyDecoder<Sink, A>
impl<Sink, A> Sync for LossyDecoder<Sink, A>
impl<Sink, A> Unpin for LossyDecoder<Sink, A>
impl<Sink, A> UnwindSafe for LossyDecoder<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