(info: &ZArr, i: u64)
| 267 | } |
| 268 | |
| 269 | fn get_error_info_item(info: &ZArr, i: u64) -> anyhow::Result<&ZVal> { |
| 270 | info.get(i) |
| 271 | .with_context(|| format!("errorInfo[{}] not exists", i)) |
| 272 | } |
| 273 | |
| 274 | fn create_exit_span_with_dsn( |
| 275 | request_id: Option<i64>, class_name: &str, function_name: &str, dsn: &Dsn, |
no outgoing calls
no test coverage detected