pub trait InfoProvider: Send + Sync {
    fn should_update_file_info(&self, file_info: &FileInfo) -> bool;
    fn update_file_info(&self, file_info: &mut FileInfo);
}

Required Methods

Implementors