pub trait WithFont: Sized {
    fn with_font(self, font: BitmapFont, color: BinaryColor) -> Styled<Self>;
}
Expand description

Style a Text with a font and color.

Required methods

Style this text with a font and color.

Implementations on Foreign Types

Implementors