vertree 0.2.2

A persistent trie where each node is typed and versioned
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
mod queue;
mod set;

pub use self::queue::Queue;
pub use self::set::Set;

/// The type of a leaf node that holds data
#[derive(Clone, Debug, Eq, PartialEq, Serialize, Deserialize)]
pub enum Container {
    Blob(Vec<u8>),
    Queue(Queue),
    Set(Set)
}