crdt_tree/
treemeta.rs

1// Copyright (c) 2022, MaidSafe.
2// All rights reserved.
3//
4// This SAFE Network Software is licensed under the BSD-3-Clause license.
5// Please see the LICENSE file for more details.
6
7/// `TreeMeta` represent the app-defined data that an application stores in each node
8/// of the tree.
9pub trait TreeMeta: Clone {}
10impl<TM: Clone> TreeMeta for TM {}