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
, { ... } }
Available on crate feature plot only.

Required Methods

Provided Methods

Implementations on Foreign Types

Implementors