detect_rs 0.1.0

Detect files on your filesystem using arbitrary expression language criteria
Documentation
1
2
3
4
5
6
7
8
9
10
11
/// uninhabited type, used to signify that something does not exist
/// provided typeclass instances never invoked but provided for
/// convenience
#[derive(Debug, Clone)]
pub enum Done {}

impl std::fmt::Display for Done {
    fn fmt(&self, _: &mut std::fmt::Formatter<'_>) -> std::fmt::Result {
        unreachable!()
    }
}