1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29
//! Cross-platform path manipulation. //! //! This module is an async version of [`std::path`]. //! //! [`std::path`]: https://doc.rust-lang.org/std/path/index.html mod ancestors; mod path; mod pathbuf; // Structs re-export #[doc(inline)] pub use std::path::{Components, Display, Iter, PrefixComponent, StripPrefixError}; // Enums re-export #[doc(inline)] pub use std::path::{Component, Prefix}; // Constants re-export #[doc(inline)] pub use std::path::MAIN_SEPARATOR; // Functions re-export #[doc(inline)] pub use std::path::is_separator; use ancestors::Ancestors; pub use path::Path; pub use pathbuf::PathBuf;