[]Struct html5ever::tendril::stream::Utf8LossyDecoder

pub struct Utf8LossyDecoder<Sink, A = NonAtomic> where
    A: Atomicity,
    Sink: TendrilSink<UTF8, A>, 
{ pub inner_sink: Sink, // some fields omitted }

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

Methods

impl<Sink, A> Utf8LossyDecoder<Sink, A> where
    A: Atomicity,
    Sink: TendrilSink<UTF8, A>, 

pub fn new(inner_sink: Sink) -> Utf8LossyDecoder<Sink, A>

Create a new incremental UTF-8 decoder.

Trait Implementations

impl<Sink, A> TendrilSink<Bytes, A> for Utf8LossyDecoder<Sink, A> where
    A: Atomicity,
    Sink: TendrilSink<UTF8, A>, 

type Output = <Sink as TendrilSink<UTF8, A>>::Output

What the overall result of processing is.

Auto Trait Implementations

impl<Sink, A> Send for Utf8LossyDecoder<Sink, A> where
    A: Send,
    Sink: Send

impl<Sink, A> Unpin for Utf8LossyDecoder<Sink, A> where
    A: Unpin,
    Sink: Unpin

impl<Sink, A> Sync for Utf8LossyDecoder<Sink, A> where
    A: Sync,
    Sink: Sync

impl<Sink, A> UnwindSafe for Utf8LossyDecoder<Sink, A> where
    A: UnwindSafe,
    Sink: UnwindSafe

impl<Sink, A> RefUnwindSafe for Utf8LossyDecoder<Sink, A> where
    A: RefUnwindSafe,
    Sink: RefUnwindSafe

Blanket Implementations

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> From<T> for T[src]

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> Any for T where
    T: 'static + ?Sized
[src]