fdf 0.9.3

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

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