std::fs::File uses `AsRef<Path>` as the type for passing paths while fs_err uses `Into<PathBuf>` This makes fs_err not be a "drop in replacement": When I pass an `AsRef<Path>` to fs_err::File::open, it does not compile