| 422 | |
| 423 | #[derive(utoipa::ToSchema, serde::Serialize)] |
| 424 | pub struct CollectionIndexingStatusResponse { |
| 425 | pub collection_name: String, |
| 426 | pub total_transactions: u32, |
| 427 | pub completed_transactions: u32, |
| 428 | pub in_progress_transactions: u32, |
| 429 | pub not_started_transactions: u32, |
| 430 | pub total_records_indexed_completed: u64, |
| 431 | pub average_rate_per_second_completed: f32, |
| 432 | pub last_synced: String, |
| 433 | } |
nothing calls this directly
no outgoing calls
no test coverage detected