pub trait HeightMode {
    fn fixed_height(&self) -> Option<u32>;
}
Expand description

Type state mode for a tree

Required Methods

Gets the fixed height if applicable

Implementors