pub trait ParallelReporter<Size: Size>: Reporter<Size> {
type DestructionError;
// Required method
fn destroy(self) -> Result<(), Self::DestructionError>;
}
Expand description
Utilize threads to report progress.
Required Associated Types§
Sourcetype DestructionError
type DestructionError
Error type of the destroy
method.
Required Methods§
Sourcefn destroy(self) -> Result<(), Self::DestructionError>
fn destroy(self) -> Result<(), Self::DestructionError>
Stop all threads.