1// devela::sys::fs::reexports
2//
3//! Reexported items from `std::fs`.
4//
56#[allow(unused_imports)]
7use crate::reexport;
89/* structs: files */
1011reexport! { rust: std::fs,
12 doc: "An object providing access to an open file on the filesystem.",
13 File
14}
15reexport! { rust: std::fs,
16 doc: "Representation of the various timestamps on a file.",
17 FileTimes
18}
19reexport! { rust: std::fs,
20 doc: "Represents a type of file with accessors for each file type.",
21 FileType
22}
23reexport! { rust: std::fs,
24 doc: "Metadata information about a file.",
25 @Metadata as FileMetadata
26}
27reexport! { rust: std::fs,
28 doc: "Options and flags which can be used to configure how a file is opened.",
29 @OpenOptions as FileOpenOptions
30}
31reexport! { rust: std::fs,
32 doc: "Representation of the various permissions on a file.",
33 @Permissions as FilePermissions
34}
3536/* structs: files */
3738reexport! { rust: std::fs,
39 doc: "A builder used to create directories in various manners.",
40 DirBuilder
41}
42reexport! { rust: std::fs,
43 doc: "Entries returned by the ReadDir iterator.",
44 DirEntry
45}
46reexport! { rust: std::fs,
47 tag: crate::TAG_ITERATOR!(),
48 doc: "Iterator over the entries in a directory.",
49 @ReadDir as IterDirRead
50}