@@ -223,7 +223,6 @@ impl FileExt for fs::File {
223
223
}
224
224
225
225
/// Unix-specific extensions to [`fs::Permissions`].
226
- ///
227
226
#[ stable( feature = "fs_ext" , since = "1.1.0" ) ]
228
227
pub trait PermissionsExt {
229
228
/// Returns the underlying raw `st_mode` bits that contain the standard
@@ -299,7 +298,6 @@ impl PermissionsExt for Permissions {
299
298
}
300
299
301
300
/// Unix-specific extensions to [`fs::OpenOptions`].
302
- ///
303
301
#[ stable( feature = "fs_ext" , since = "1.1.0" ) ]
304
302
pub trait OpenOptionsExt {
305
303
/// Sets the mode bits that a new file will be created with.
@@ -367,7 +365,6 @@ impl OpenOptionsExt for OpenOptions {
367
365
*/
368
366
369
367
/// Unix-specific extensions to [`fs::Metadata`].
370
- ///
371
368
#[ stable( feature = "metadata_ext" , since = "1.1.0" ) ]
372
369
pub trait MetadataExt {
373
370
/// Returns the ID of the device containing the file.
@@ -746,7 +743,6 @@ impl FileTypeExt for fs::FileType {
746
743
}
747
744
748
745
/// Unix-specific extension methods for [`fs::DirEntry`].
749
- ///
750
746
#[ stable( feature = "dir_entry_ext" , since = "1.1.0" ) ]
751
747
pub trait DirEntryExt {
752
748
/// Returns the underlying `d_ino` field in the contained `dirent`
@@ -807,7 +803,6 @@ pub fn symlink<P: AsRef<Path>, Q: AsRef<Path>>(src: P, dst: Q) -> io::Result<()>
807
803
}
808
804
809
805
/// Unix-specific extensions to [`fs::DirBuilder`].
810
- ///
811
806
#[ stable( feature = "dir_builder" , since = "1.6.0" ) ]
812
807
pub trait DirBuilderExt {
813
808
/// Sets the mode to create new directories with. This option defaults to
0 commit comments