logo
pub trait Num: PartialOrd + Copy + Default + Debug { }
Expand description

The underlying number type used for the tree. It is auto implemented by all types that satisfy the type constraints. Notice that no arithmetic is possible. The tree is constructed using only comparisons and copying.

Implementors