Trait countable::Countable

source ·
pub trait Countable: Sized {
    type Counter: Iterator<Item = Self>;

    fn count() -> Self::Counter;
}

Required Associated Types

Required Methods

Implementations on Foreign Types

Implementors