pub trait HasCounter {
    // Required method
    fn ctr_start(&self) -> Counter;
}

Required Methods§

Implementors§

source§

impl<T: HasId> HasCounter for T