pub trait NodeCollection {
// Required methods
fn max_entry_height(self) -> i64;
fn max_height(self) -> i64;
fn max_height_below_entry(self) -> i64;
fn max_width(self) -> i64;
fn total_width(self) -> i64;
fn total_height(self) -> i64;
}Expand description
Helper trait for collections of nodes.
Required Methods§
Sourcefn max_entry_height(self) -> i64
fn max_entry_height(self) -> i64
The maximum entry_height()-value.
Sourcefn max_height(self) -> i64
fn max_height(self) -> i64
The maximum height()-value.
Sourcefn max_height_below_entry(self) -> i64
fn max_height_below_entry(self) -> i64
The maximum height_below_entry()-value.
Sourcefn total_width(self) -> i64
fn total_width(self) -> i64
The sum of all width()-values.
Sourcefn total_height(self) -> i64
fn total_height(self) -> i64
The sum of all height()-values.