//! The console module is used mostly for testing purposes.
#![deny(missing_docs)]usebackend::Backend;usecache::CapellaCache;/// Console is a unit struct that prints stats to the terminal.
#[derive(Default)]pubstructConsole;implBackend forConsole{fnpurge_metrics(&self, cache:&mut CapellaCache){println!("{:?}", cache);
cache.reset();}}