Trait binary_tree::BinaryTree [] [src]

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

Associated Types

type Node: Node

Required Methods

fn root(&self) -> Option<&Self::Node>

Implementors