pub trait IntoTextStyle<'a> {
    fn into_text_style<P>(self, parent: &P) -> TextStyle<'a>
    where
        P: HasDimension
; fn with_color<C>(self, color: C) -> TextStyleBuilder<'a, Self>
    where
        C: Color
, { ... }
fn with_anchor<C>(self, pos: Pos) -> TextStyleBuilder<'a, Self>
    where
        C: Color
, { ... } }

Required methods

Provided methods

Implementations on Foreign Types

Implementors