pub trait CounterStatic {
    // Required method
    fn increment_value(&'static self, value: i64);
}

Required Methods§

source

fn increment_value(&'static self, value: i64)

Implementations on Foreign Types§

source§

impl<T> CounterStatic for LocalKey<T>
where T: Counter,

source§

fn increment_value(&'static self, value: i64)

Implementors§