Trait binary_tree::BinaryTree [] [src]

pub trait BinaryTree {
    type Node: Node;
    fn root(&self) -> Option<&Self::Node>;
}

Associated Types

Required Methods

Implementors