[][src]Trait ot::binary_tree::BinaryTree

pub trait BinaryTree {
    type Output;
    type Child;
    fn read_node<T: MemRead>(data: &mut T) -> Result<Self::Output, Error>;
}

Associated Types

type Output

type Child

Loading content...

Required methods

fn read_node<T: MemRead>(data: &mut T) -> Result<Self::Output, Error>

Loading content...

Implementors

impl<D: HasChildren> BinaryTree for D[src]

type Output = D::Output

type Child = D::Child

Loading content...