pub type Binary<T> = Dary<2, T>;
A binary tree where each of the nodes might have at most 2 children.
pub struct Binary<T> { /* private fields */ }