Trait runt::errors::RichVec[][src]

pub trait RichVec<T, E> {
    fn partition_results(self) -> (Vec<T>, Vec<E>);
}
Expand description

Simple trait to implement partitioning methon on vectors of results.

Required methods

Separate a Vec containing both T and E into two seperate Vecs.

Implementations on Foreign Types

Implementors