pub trait BackendStyle {
    fn color(&self) -> BackendColor;

    fn stroke_width(&self) -> u32 { ... }
}
Expand description

The style data for the backend drawing API

Required Methods

Get the color of current style

Provided Methods

Get the stroke width of current style

Implementors