Trait Zip3

Source
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§

Source

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.

Implementors§

Source§

impl<T1> Zip3<T1> for Result<T1>