pub trait SectionWithLimitedItems {
    fn get_count(&self) -> u32;
}
Expand description

Implemented by sections with a limited number of items.

Required Methods

Gets the count of the items in the section.

Implementors