pub struct Decoder<Sink, A = NonAtomic>{ /* private fields */ }Expand description
A TendrilSink adaptor that takes bytes, decodes them as the given
character encoding, while replacing any ill-formed byte sequences with
U+FFFD replacement characters, and emits Unicode (StrTendril).
This allocates new tendrils for encodings other than UTF-8.
Implementations§
Trait Implementations§
Source§impl<Sink, A> TendrilSink<Bytes, A> for Decoder<Sink, A>
impl<Sink, A> TendrilSink<Bytes, A> for Decoder<Sink, A>
Source§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 Decoder<Sink, A>where
Sink: Freeze,
impl<Sink, A> RefUnwindSafe for Decoder<Sink, A>where
Sink: RefUnwindSafe,
A: RefUnwindSafe,
impl<Sink, A> Send for Decoder<Sink, A>
impl<Sink, A> Sync for Decoder<Sink, A>
impl<Sink, A> Unpin for Decoder<Sink, A>
impl<Sink, A> UnsafeUnpin for Decoder<Sink, A>where
Sink: UnsafeUnpin,
impl<Sink, A> UnwindSafe for Decoder<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