tree-type 0.4.5

Rust macros for creating type-safe filesystem tree structures
Documentation
1
2
3
4
5
6
7
8
9
10
//! Re-exports for the `walk` feature.
//!
//! This module provides convenient access to walkdir types without requiring
//! consumers to add walkdir as a dependency.

/// Re-export of [`walkdir::WalkDir`]. See original docs for details.
pub use walkdir::WalkDir;

/// Re-export of [`walkdir::DirEntry`]. See original docs for details.
pub use walkdir::DirEntry;