pub trait PathResolver { // Required method fn resolve(&self, bin: &str) -> Result<SafePath>; }
Resolve a binary name to a SafePath.
SafePath
Returns an error if the binary cannot be resolved to a safe path.