()
| 85 | } |
| 86 | |
| 87 | pub(super) fn get_struct_name() -> Option<String> { |
| 88 | MACRO_CONTEXT.with(|ctx| ctx.borrow().as_ref().map(|c| c.struct_name.clone())) |
| 89 | } |
| 90 | |
| 91 | pub(super) fn is_debug_enabled() -> bool { |
| 92 | MACRO_CONTEXT.with(|ctx| { |
no test coverage detected