Trait counting_networks::counters::Counter [] [src]

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

Output sequential values without duplicates or skips.

Required Methods

Retrieve value from counter and update internal state.

Implementors