Zippable

Trait Zippable 

Source
pub trait Zippable<B>
where Self: Sized, B: IntoIterator,
{ // Required method fn zip_optional(self, b: Option<B>) -> ZipOptional<Self, B::IntoIter> ; }

Required Methods§

Source

fn zip_optional(self, b: Option<B>) -> ZipOptional<Self, B::IntoIter>

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, B> Zippable<B> for I
where I: Iterator, B: IntoIterator,