use crate::pos::PosCounter; pub struct NopPosCounter {} impl Default for NopPosCounter { fn default() -> Self { return NopPosCounter {}; } } impl PosCounter<'static, C> for NopPosCounter { type P = (); fn update(&mut self, _: C) {} fn export(&self) {} }