()
| 33 | } |
| 34 | |
| 35 | fn event_log() -> &'static Mutex<Vec<String>> { |
| 36 | static LOG: OnceLock<Mutex<Vec<String>>> = OnceLock::new(); |
| 37 | LOG.get_or_init(|| Mutex::new(Vec::new())) |
| 38 | } |
| 39 | |
| 40 | fn record_event(prefix: &str, struct_name: &str, field_name: &str) { |
| 41 | if struct_name == "DebugSample" { |
no outgoing calls
no test coverage detected