| 20 | #[napi(object)] |
| 21 | #[allow(non_snake_case)] |
| 22 | pub struct DebugQueryResult { |
| 23 | pub recordsReturned: u32, |
| 24 | pub recordsAvailable: u32, |
| 25 | pub oldestRecordId: BigInt, |
| 26 | pub newestRecordId: BigInt, |
| 27 | pub recordsDropped: u32, |
| 28 | } |
| 29 | |
| 30 | const DEBUG_CFG_KEYS: &[(&str, &str)] = &[ |
| 31 | ("enabled", "enabled"), |
nothing calls this directly
no outgoing calls
no test coverage detected