find-in-path 1.0.0

Initialize a LaTex project inside a folder instantly
Documentation
1
2
3
4
5
6
7
8
9
10
//! Contains the FindInPath implementation for PathBuf

use crate::prelude::*;
use std::path::PathBuf;

impl FindInPath for PathBuf {
    fn find_in_path(&self) -> Option<std::path::PathBuf> {
        self.as_path().find_in_path()
    }
}