pub type ProgressCallback = Arc<dyn Fn(usize, usize, String) + Send + Sync>;Expand description
Progress callback type: (current_file_count, total_file_count, status_message) Uses Arc to allow cloning for multi-threaded progress updates
Aliased Typeยง
pub struct ProgressCallback { /* private fields */ }