1use crate::records::error_handler::ErrorHandler; 2 3impl dyn ErrorHandler { 4 #[allow(unused_variables)] 5 pub fn report_error(&mut self, message: alloc::string::String) {} 6}