We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 27fe9c2 commit 5e17f38Copy full SHA for 5e17f38
cap-std/src/fs_utf8/file.rs
@@ -551,25 +551,6 @@ impl crate::fs::FileExt for File {
551
self.cap_std.create_directory(path)
552
}
553
554
- #[inline]
555
- fn read_link<P: AsRef<Path>>(
556
- &self,
557
- path: P,
558
- ) -> std::result::Result<std::path::PathBuf, io::Error> {
559
- let path = path.as_ref();
560
- self.cap_std.read_link(path)
561
- }
562
-
563
564
- fn metadata_at<P: AsRef<Path>>(
565
566
- lookup_flags: u32,
567
568
- ) -> std::result::Result<std::fs::Metadata, io::Error> {
569
570
- self.cap_std.metadata_at(lookup_flags, path)
571
572
573
#[inline]
574
fn remove_file<P: AsRef<Path>>(&self, path: P) -> std::result::Result<(), io::Error> {
575
let path = path.as_ref();
0 commit comments