Trait grafix_toolbox::lib::CountItems

source ·
pub trait CountItems<T: Eq + Hash>: Sized + Iterator<Item = T> {
    // Provided method
    fn map_count(self) -> HashMap<T, usize> { ... }
}

Provided Methods§

source

fn map_count(self) -> HashMap<T, usize>

Object Safety§

This trait is not object safe.

Implementors§

source§

impl<T: Eq + Hash, V: Sized + Iterator<Item = T>> CountItems<T> for V