find_in_path/
string.rs

1use crate::prelude::*;
2
3impl FindInPath for String {
4    fn find_in_path(&self) -> Option<std::path::PathBuf> {
5        self.as_str().find_in_path()
6    }
7}