Set the alignment for this column. # Arguments `alignment` - The alignment to use # Returns Self for method chaining.
(mut self, alignment: Alignment)
| 147 | /// |
| 148 | /// Self for method chaining. |
| 149 | pub fn align(mut self, alignment: Alignment) -> Self { |
| 150 | self.alignment = alignment; |
| 151 | self |
| 152 | } |
| 153 | |
| 154 | /// Set the minimum width for this column. |
| 155 | /// |
no outgoing calls