Set the maximum width for this column. # Arguments `width` - The maximum width in characters (0 means no maximum) # Returns Self for method chaining.
(mut self, width: usize)
| 175 | /// |
| 176 | /// Self for method chaining. |
| 177 | pub fn max_width(mut self, width: usize) -> Self { |
| 178 | self.max_width = width; |
| 179 | self |
| 180 | } |
| 181 | } |
| 182 | |
| 183 | // Row |
no outgoing calls