devela/sys/fs/path/
mod.rs

1// devela::sys::fs::path
2//
3//! Cross-platform path manipulation.
4//!
5#![doc = crate::doc_!(extends: path)]
6#![doc = crate::doc_!(newline)]
7//
8
9mod reexports;
10
11#[cfg(feature = "std")]
12#[cfg_attr(feature = "nightly_doc", doc(cfg(feature = "std")))]
13mod ext; // ExtPath
14
15crate::items! { // structural access: _mods, _all
16    #[allow(unused)]
17    pub use _mods::*;
18
19    mod _mods { #![allow(unused)]
20        pub use super::reexports::*;
21
22        #[cfg(feature = "std")]
23        pub use super::ext::*;
24    }
25    pub(super) mod _all { #![allow(unused)]
26        #[doc(inline)]
27        pub use super::_mods::*;
28    }
29}