| 97 | |
| 98 | #[derive(Debug, Serialize)] |
| 99 | pub struct CollectionIndexingStatusSummary { |
| 100 | pub total_transactions: u32, |
| 101 | pub completed_transactions: u32, |
| 102 | pub in_progress_transactions: u32, |
| 103 | pub not_started_transactions: u32, |
| 104 | pub total_records_indexed_completed: u64, |
| 105 | pub average_rate_per_second_completed: f32, |
| 106 | } |
| 107 | |
| 108 | #[derive(Debug, Serialize)] |
| 109 | pub struct TransactionStatusWithTransactionId { |
nothing calls this directly
no outgoing calls
no test coverage detected