use {
std::{
path::Path,
},
};
/// something which can be evaluated by a pattern to produce
/// either a score or a more precise match
#[derive(Debug, Clone, Copy)]
pub struct Candidate<'c> {
/// path to the file to open if the pattern searches into files
pub path: &'c Path,
/// path from the current root
pub subpath: &'c str,
/// filename
pub name: &'c str,
}