Set the minimum width for this column. # Arguments `width` - The minimum width in characters # Returns Self for method chaining.
(mut self, width: usize)
| 161 | /// |
| 162 | /// Self for method chaining. |
| 163 | pub fn min_width(mut self, width: usize) -> Self { |
| 164 | self.min_width = width; |
| 165 | self |
| 166 | } |
| 167 | |
| 168 | /// Set the maximum width for this column. |
| 169 | /// |
no outgoing calls