pub trait CounterClient: PollClient {
    fn create_counter(
        &mut self,
        location: Location
    ) -> ClientResult<'_, CreateCounter, Self> { ... }
fn increment_counter(
        &mut self,
        id: CounterId
    ) -> ClientResult<'_, IncrementCounter, Self> { ... } }
Expand description

Create counters, increment existing counters.

Provided methods

Implementors