fdf 0.9.2

A fast, multi-threaded filesystem search tool with regex/glob support and extremely pretty colours!
Documentation
1
2
3
4
5
6
use crate::{SearchConfig, fs::DirEntry};

/// Filter function type for directory entries,
pub type FilterType = fn(&SearchConfig, &DirEntry, Option<DirEntryFilter>) -> bool;
/// Generic filter function type for directory entries
pub type DirEntryFilter = fn(&DirEntry) -> bool;