Set whether to show the header separator line.
(&mut self, show: bool)
| 324 | |
| 325 | /// Set whether to show the header separator line. |
| 326 | pub fn show_header_separator(&mut self, show: bool) -> &mut Self { |
| 327 | self.show_header_separator = show; |
| 328 | self |
| 329 | } |
| 330 | |
| 331 | /// Set the column separator string. |
| 332 | pub fn column_separator(&mut self, sep: impl Into<String>) -> &mut Self { |
no outgoing calls