Sets the text color
(&mut self, color: &str)
| 131 | |
| 132 | /// Sets the text color |
| 133 | pub fn set_color(&mut self, color: &str) -> &mut Self { |
| 134 | self.color = String::from(color); |
| 135 | self |
| 136 | } |
| 137 | |
| 138 | /// Sets the horizontal alignment |
| 139 | /// |
no outgoing calls