(&mut self, color: impl Into<Color>)
| 49 | /// Sets the text color. |
| 50 | #[inline] |
| 51 | pub fn color(&mut self, color: impl Into<Color>) -> &mut Self { |
| 52 | self.color = color.into(); |
| 53 | self |
| 54 | } |
| 55 | |
| 56 | /// Sets the font to use for this text element. |
| 57 | #[inline] |
no outgoing calls