[][src]Struct embedded_graphics::style::Style

pub struct Style<P: PixelColor> {
    pub fill_color: Option<P>,
    pub stroke_color: Option<P>,
    pub stroke_width: u8,
}

Style properties for an object

Fields

fill_color: Option<P>

Fill colour of the object

For fonts, this is the background colour of the text

stroke_color: Option<P>

Stroke (border/line) color of the object

For fonts, this is the foreground colour of the text

stroke_width: u8

Stroke width

Set the stroke width for an object. Has no effect on fonts.

Methods

impl<P> Style<P> where
    P: PixelColor
[src]

pub fn with_stroke(stroke_color: P) -> Self[src]

Create a new style with a given stroke value and defaults for everything else

Trait Implementations

impl<P: Debug + PixelColor> Debug for Style<P>[src]

impl<P: Copy + PixelColor> Copy for Style<P>[src]

impl<P: Clone + PixelColor> Clone for Style<P>[src]

fn clone_from(&mut self, source: &Self)
1.0.0
[src]

Performs copy-assignment from source. Read more

impl<P> Default for Style<P> where
    P: PixelColor
[src]

Auto Trait Implementations

impl<P> Send for Style<P> where
    P: Send

impl<P> Sync for Style<P> where
    P: Sync

Blanket Implementations

impl<T> From for T[src]

impl<T, U> TryFrom for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.

impl<T, U> Into for T where
    U: From<T>, 
[src]

impl<T> Borrow for T where
    T: ?Sized
[src]

impl<T> BorrowMut for T where
    T: ?Sized
[src]

impl<T> Any for T where
    T: 'static + ?Sized
[src]