pub trait ZipAnyVrExt: Interface {
    type E: Interface;

    // Required method
    fn zip_any_vr(self) -> Self::E;
}
Expand description

Extension trait for zip_any_vr.

Required Associated Types§

source

type E: Interface

Egress interface.

Required Methods§

source

fn zip_any_vr(self) -> Self::E

Zip-any valid-ready.

Object Safety§

This trait is not object safe.

Implementations on Foreign Types§

source§

impl<P1: Copy, P2: Copy, const D: Dep> ZipAnyVrExt for (Vr<P1, D>, Vr<P2, D>)

source§

fn zip_any_vr(self) -> Vr<(HOption<P1>, HOption<P2>), D>

TODO(kjh): Documentation

§

type E = I<AndH<ValidH<(HOption<P1>, HOption<P2>), ()>>, D>

Implementors§