Trait Count

Source
pub trait Count {
    // Required method
    fn update(&self) -> Option<CounterUpdate>;
}
Expand description

Elements that have special counting behaviour.

Required Methods§

Source

fn update(&self) -> Option<CounterUpdate>

Get the counter update for this element.

Implementors§