Trait acacia::traits::AssociatedData
[−]
[src]
pub trait AssociatedData {
type Data;
fn data(&self) -> &Self::Data;
}A tree with associated data
Associated Types
type Data
Type of the associated data
Required Methods
fn data(&self) -> &Self::Data
Data associated to the node
Implementors
impl<P, O, D> AssociatedData for Tree<P, O, D>