1 2 3 4 5 6 7 8 9 10 11 12 13
//! Filesystem manipulation operations. #![cfg_attr(feature = "allocator_api", feature(allocator_api))] #![warn(missing_docs)] mod file; pub use file::*; mod open_options; pub use open_options::*; #[cfg(target_os = "windows")] pub mod named_pipe;