1/// Prevents `Counter` from being implemented externally.
2///
3/// Items exist on this trait rather than `Counter` so that they are impossible
4/// to access externally.
5pub trait Sealed {}
6