treelog 0.0.6

A highly customizable, optimized, and modular tree rendering library
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
//! Serde serialization and deserialization support for Tree.

#[cfg(feature = "serde-json")]
mod json;

#[cfg(feature = "serde-yaml")]
mod yaml;

#[cfg(feature = "serde-toml")]
mod toml;

#[cfg(feature = "serde-ron")]
mod ron;