| 9 | #[napi(object)] |
| 10 | #[allow(non_snake_case)] |
| 11 | pub struct DebugStats { |
| 12 | pub totalRecords: BigInt, |
| 13 | pub totalDropped: BigInt, |
| 14 | pub errorCount: u32, |
| 15 | pub warnCount: u32, |
| 16 | pub currentRingUsage: u32, |
| 17 | pub ringCapacity: u32, |
| 18 | } |
| 19 | |
| 20 | #[napi(object)] |
| 21 | #[allow(non_snake_case)] |
nothing calls this directly
no outgoing calls
no test coverage detected