pub trait Zip3<T1> {
// Required method
fn zip3<T2, T3, T4>(
self,
other1: Result<T2>,
other2: Result<T3>,
other3: Result<T4>,
) -> Result<(T1, T2, T3, T4)>;
}
Required Methods§
fn zip3<T2, T3, T4>( self, other1: Result<T2>, other2: Result<T3>, other3: Result<T4>, ) -> Result<(T1, T2, T3, T4)>
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.