pub trait Zippable<B>where
Self: Sized,
B: IntoIterator,{
// Required method
fn zip_optional(self, b: Option<B>) -> ZipOptional<Self, B::IntoIter> ⓘ;
}Required Methods§
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.