pub struct RequestSummaryWithCount {
pub id: Uuid,
pub batch_id: Uuid,
pub model: String,
pub status: String,
pub created_at: DateTime<Utc>,
pub completed_at: Option<DateTime<Utc>>,
pub failed_at: Option<DateTime<Utc>>,
pub duration_ms: Option<f64>,
pub response_status: Option<i16>,
pub service_tier: Option<String>,
pub batch_created_by: String,
pub total_count: i64,
}no longer used internally; use RequestSummary and RequestListResult.total_count
Fields§
§id: Uuidno longer used internally; use RequestSummary and RequestListResult.total_count
batch_id: Uuidno longer used internally; use RequestSummary and RequestListResult.total_count
model: Stringno longer used internally; use RequestSummary and RequestListResult.total_count
status: Stringno longer used internally; use RequestSummary and RequestListResult.total_count
created_at: DateTime<Utc>no longer used internally; use RequestSummary and RequestListResult.total_count
completed_at: Option<DateTime<Utc>>no longer used internally; use RequestSummary and RequestListResult.total_count
failed_at: Option<DateTime<Utc>>no longer used internally; use RequestSummary and RequestListResult.total_count
duration_ms: Option<f64>no longer used internally; use RequestSummary and RequestListResult.total_count
response_status: Option<i16>no longer used internally; use RequestSummary and RequestListResult.total_count
service_tier: Option<String>no longer used internally; use RequestSummary and RequestListResult.total_count
batch_created_by: Stringno longer used internally; use RequestSummary and RequestListResult.total_count
total_count: i64no longer used internally; use RequestSummary and RequestListResult.total_count
Trait Implementations§
Source§impl Clone for RequestSummaryWithCount
impl Clone for RequestSummaryWithCount
Source§fn clone(&self) -> RequestSummaryWithCount
fn clone(&self) -> RequestSummaryWithCount
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source. Read more