(
State(state): State<AppState>,
Path(udid): Path<String>,
Query(query): Query<PerformanceRequestQuery>,
)
| 1973 | } |
| 1974 | |
| 1975 | async fn simulator_performance( |
| 1976 | State(state): State<AppState>, |
| 1977 | Path(udid): Path<String>, |
| 1978 | Query(query): Query<PerformanceRequestQuery>, |
| 1979 | ) -> Result<Json<Value>, AppError> { |
| 1980 | simulator_performance_payload(state, udid, query.pid, query.window_ms).await |
| 1981 | } |
| 1982 | |
| 1983 | async fn simulator_process_performance( |
| 1984 | State(state): State<AppState>, |
nothing calls this directly
no test coverage detected