(record: &Value)
| 497 | } |
| 498 | |
| 499 | fn timestamp_from_record(record: &Value) -> Option<i64> { |
| 500 | record |
| 501 | .get("timestamp") |
| 502 | .and_then(Value::as_str) |
| 503 | .and_then(parse_timestamp) |
| 504 | .map(|secs| secs as i64) |
| 505 | } |
| 506 | |
| 507 | fn compacted_summary_from_line( |
| 508 | record: &Value, |
no outgoing calls
no test coverage detected