(ms: i64)
| 5416 | } |
| 5417 | |
| 5418 | fn format_optional_epoch_ms(ms: i64) -> String { |
| 5419 | if ms > 0 { |
| 5420 | format_epoch_ms(ms) |
| 5421 | } else { |
| 5422 | "-".to_string() |
| 5423 | } |
| 5424 | } |
| 5425 | |
| 5426 | fn truncate_status_field(value: &str, max_chars: usize) -> String { |
| 5427 | if value.is_empty() { |
nothing calls this directly
no test coverage detected