Type Alias Tree

Source
pub type Tree<V, E> = Tree<V, E, E>;
Expand description

A basic expiring strutured tree

This tree is an alias for a generic expiring tree, but asserts that the metadata encoding is the same as the value encoding.

Aliased Typeยง

pub struct Tree<V, E> { /* private fields */ }