(models: &[String])
| 200 | } |
| 201 | |
| 202 | fn format_block_models(models: &[String]) -> String { |
| 203 | if models.is_empty() { |
| 204 | "-".to_string() |
| 205 | } else { |
| 206 | format_models_multiline(models) |
| 207 | } |
| 208 | } |
| 209 | |
| 210 | fn format_block_time(block: &SessionBlock, compact: bool) -> String { |
| 211 | let start = format_local_block_start(block.start_time, compact); |
nothing calls this directly
no test coverage detected