We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
DataTree
1 parent 82ecfda commit 55abfaeCopy full SHA for 55abfae
src/data_tree.rs
@@ -7,6 +7,10 @@ pub use Reflection as DataTreeReflection;
7
use super::size::Size;
8
9
/// Disk usage data of a filesystem tree.
10
+///
11
+/// **Serializing and deserializing:** _(feature: `json`)_ `DataTree` does not implement
12
+/// [`Serialize`](serde::Serialize) and [`Deserialize`](serde::Deserialize) traits directly,
13
+/// instead, it can be converted into/from a [`Reflection`] which implements these traits.
14
#[derive(Debug, PartialEq, Eq)]
15
pub struct DataTree<Name, Data: Size> {
16
name: Name,
0 commit comments