pub trait ParallelReporter<Data: Size>: Reporter<Data> {
    type DestructionError;
    fn destroy(self) -> Result<(), Self::DestructionError>;
}
Expand description

Utilize threads to report progress.

Associated Types

Error type of the destroy method.

Required methods

Stop all threads.

Implementors