pub trait Split<Selection, Indices>: Sized {
    type Remainder;

    fn split(self) -> Result<Selection, Self::Remainder>;
}

Required Associated Types

Required Methods

Extract a subset of the possible types in a coproduct (or get the remaining possibilities)

Implementors