Trait parallel_disk_usage::reporter::ParallelReporter
source · [−]pub trait ParallelReporter<Data: Size>: Reporter<Data> {
type DestructionError;
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.