Trait BackendStyle
plotters::drawing::backend
pub trait BackendStyle { type ColorType: Color; fn as_color(&self) -> RGBAColor; }
The style data for the backend drawing API
type ColorType: Color
The underlying type reprsents the color for this style
fn as_color(&self) -> RGBAColor
Convert the style into the underlying color
impl<T: Color> BackendStyle for T
type ColorType = T