dir_structure/traits/mod.rs
1//! Crate traits.
2
3pub mod sync;
4
5pub mod vfs;
6
7#[cfg(feature = "async")]
8#[cfg_attr(docsrs, doc(cfg(feature = "async")))]
9pub mod asy;
10
11#[cfg(feature = "async")]
12#[cfg_attr(docsrs, doc(cfg(feature = "async")))]
13pub mod async_vfs;
14
15#[cfg(feature = "resolve-path")]
16#[cfg_attr(docsrs, doc(cfg(feature = "resolve-path")))]
17pub mod resolve;