(&self, table: TableStruct)
| 94 | } |
| 95 | |
| 96 | fn print_table(&self, table: TableStruct) { |
| 97 | let table = table.color_choice(self.color_policy); |
| 98 | if let Err(e) = print_stdout(table) { |
| 99 | log::error!("Cannot print table to stdout: {e:?}"); |
| 100 | } |
| 101 | } |
| 102 | |
| 103 | fn print_job_shared_task_description( |
| 104 | &self, |
no outgoing calls
no test coverage detected