(
State(state): State<AppState>,
Path((udid, pid)): Path<(String, i32)>,
Query(query): Query<PerformanceRequestQuery>,
)
| 1981 | } |
| 1982 | |
| 1983 | async fn simulator_process_performance( |
| 1984 | State(state): State<AppState>, |
| 1985 | Path((udid, pid)): Path<(String, i32)>, |
| 1986 | Query(query): Query<PerformanceRequestQuery>, |
| 1987 | ) -> Result<Json<Value>, AppError> { |
| 1988 | simulator_performance_payload(state, udid, Some(pid), query.window_ms).await |
| 1989 | } |
| 1990 | |
| 1991 | async fn simulator_performance_payload( |
| 1992 | state: AppState, |
nothing calls this directly
no test coverage detected