1use crate::records::frontend::Frontend; 2 3impl Frontend { 4 pub fn clear_stats(&mut self) { 5 self.stats = Default::default(); 6 } 7}