Trait EncodeExt

Source
pub trait EncodeExt<I>
where I: Iterator,
{ // Required method fn encode<E: Encoder<In = I::Item>>( self, encoder: &mut E, action: Action, ) -> EncodeIterator<'_, I, E> where CompressionError: From<E::Error>; }

Required Methods§

Source

fn encode<E: Encoder<In = I::Item>>( self, encoder: &mut E, action: Action, ) -> EncodeIterator<'_, I, E>

Dyn Compatibility§

This trait is not dyn compatible.

In older versions of Rust, dyn compatibility was called "object safety", so this trait is not object safe.

Implementors§

Source§

impl<I> EncodeExt<<I as IntoIterator>::IntoIter> for I
where I: IntoIterator,