Set the column separator string.
(&mut self, sep: impl Into<String>)
| 330 | |
| 331 | /// Set the column separator string. |
| 332 | pub fn column_separator(&mut self, sep: impl Into<String>) -> &mut Self { |
| 333 | self.column_separator = sep.into(); |
| 334 | self |
| 335 | } |
| 336 | |
| 337 | /// Set the columns with full configuration. |
| 338 | /// |
no outgoing calls