text.rs 172 B

1234567
  1. use starry_client::base::color::Color;
  2. pub trait Text {
  3. fn set_text<S: Into<String>>(&self, text: S) -> &Self;
  4. fn set_text_color(&self, color: Color) -> &Self;
  5. }