pub trait IntoTree<H>where
    H: IsHash,
    Self: Sized,
    Self: IntoIterator,
    <Self as IntoIterator>::Item: IsData<H>,
{ fn size(&self) -> usize; fn into_tree(self) -> Tree<H> { ... } }

Required Methods

Provided Methods

Implementations on Foreign Types

Implementors