pub trait Count {
// Required method
fn update(&self) -> Option<CounterUpdate>;
}
Expand description
Elements that have special counting behaviour.
Required Methods§
Sourcefn update(&self) -> Option<CounterUpdate>
fn update(&self) -> Option<CounterUpdate>
Get the counter update for this element.