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 `serde` feature.
//!
//! This module provides convenient access to serde types without requiring
//! consumers to add serde as a dependency.

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

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