find_in_path/
pathbuf.rs

1//! Contains the FindInPath implementation for PathBuf
2
3use crate::prelude::*;
4use std::path::PathBuf;
5
6impl FindInPath for PathBuf {
7    fn find_in_path(&self) -> Option<std::path::PathBuf> {
8        self.as_path().find_in_path()
9    }
10}