Trait voncount::Counter[][src]

pub trait Counter {
    fn count(&self) -> usize;
}

Describes types which count things. What they count is up to them.

Required Methods

Returns the current count of items counted.

Implementors