logo
pub trait Zip {
    type Output: Topological;

    fn zip(self) -> Self::Output;
}

Required Associated Types

Required Methods

Implementations on Foreign Types

Implementors