[][src]Trait dinotree_alg::par::Joiner

pub trait Joiner: Sized + Send + Sync {
    fn next(self) -> ParResult<Self, Sequential>;
}

Common trait over Parallel and Sequential to make writing generic code easier.

Required methods

fn next(self) -> ParResult<Self, Sequential>

Loading content...

Implementors

impl Joiner for Parallel[src]

impl Joiner for Sequential[src]

Loading content...