[][src]Trait plotters::style::IntoFont

pub trait IntoFont<'a> {
    fn into_font(self) -> FontDesc<'a>;
}

The trait that allows some type turns into a font description

Required methods

fn into_font(self) -> FontDesc<'a>

Make the font description from the source type

Loading content...

Implementors

impl<'a, T: Into<FontDesc<'a>>> IntoFont<'a> for T[src]

Loading content...