Struct embedded_graphics::style::Style
source · pub struct Style<P: PixelColor> {
pub fill_color: Option<P>,
pub stroke_color: Option<P>,
pub stroke_width: u8,
}Expand description
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: u8Stroke width
Set the stroke width for an object. Has no effect on fonts.
Implementations§
Trait Implementations§
source§impl<P> Default for Style<P>where
P: PixelColor,
impl<P> Default for Style<P>where
P: PixelColor,
impl<P: Copy + PixelColor> Copy for Style<P>
Auto Trait Implementations§
impl<P> Freeze for Style<P>where
P: Freeze,
impl<P> RefUnwindSafe for Style<P>where
P: RefUnwindSafe,
impl<P> Send for Style<P>where
P: Send,
impl<P> Sync for Style<P>where
P: Sync,
impl<P> Unpin for Style<P>where
P: Unpin,
impl<P> UnwindSafe for Style<P>where
P: UnwindSafe,
Blanket Implementations§
source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
source§default unsafe fn clone_to_uninit(&self, dst: *mut T)
default unsafe fn clone_to_uninit(&self, dst: *mut T)
🔬This is a nightly-only experimental API. (
clone_to_uninit)source§impl<T> CloneToUninit for Twhere
T: Copy,
impl<T> CloneToUninit for Twhere
T: Copy,
source§unsafe fn clone_to_uninit(&self, dst: *mut T)
unsafe fn clone_to_uninit(&self, dst: *mut T)
🔬This is a nightly-only experimental API. (
clone_to_uninit)source§impl<SS, SP> SupersetOf<SS> for SPwhere
SS: SubsetOf<SP>,
impl<SS, SP> SupersetOf<SS> for SPwhere
SS: SubsetOf<SP>,
source§fn to_subset(&self) -> Option<SS>
fn to_subset(&self) -> Option<SS>
The inverse inclusion map: attempts to construct
self from the equivalent element of its
superset. Read moresource§fn is_in_subset(&self) -> bool
fn is_in_subset(&self) -> bool
Checks if
self is actually part of its subset T (and can be converted to it).source§unsafe fn to_subset_unchecked(&self) -> SS
unsafe fn to_subset_unchecked(&self) -> SS
Use with care! Same as
self.to_subset but without any property checks. Always succeeds.source§fn from_subset(element: &SS) -> SP
fn from_subset(element: &SS) -> SP
The inclusion map: converts
self to the equivalent element of its superset.