pub struct PrimitiveStyleBuilder<C>where
C: PixelColor,{ /* private fields */ }
Expand description
Primitive style builder.
Use this builder to create PrimitiveStyle
s. If any properties on the builder are omitted,
the value will remain at its default value.
The primitive_style!
macro can also be used to create PrimitiveStyle
s, but with a
shorter syntax. See the primitive_style!
documentation for examples.
§Examples
§Build a style with configured stroke and fill
This example builds a style for a circle with a 3px red stroke and a solid green fill. The circle is centered at (20, 20) with a radius of 10px.
use embedded_graphics::{
egtext,
pixelcolor::Rgb565,
prelude::*,
primitives::Circle,
style::{PrimitiveStyle, PrimitiveStyleBuilder},
};
let style: PrimitiveStyle<Rgb565> = PrimitiveStyleBuilder::new()
.stroke_color(Rgb565::RED)
.stroke_width(3)
.fill_color(Rgb565::GREEN)
.build();
let circle = Circle::new(Point::new(20, 20), 10).into_styled(style);
§Build a style with stroke and no fill
This example builds a style for a rectangle with a 1px red stroke. Because .fill_color()
is
not called, the fill color remains the default value of None
(i.e. transparent).
use embedded_graphics::{
egtext,
pixelcolor::Rgb565,
prelude::*,
primitives::Rectangle,
style::{PrimitiveStyle, PrimitiveStyleBuilder},
};
let style: PrimitiveStyle<Rgb565> = PrimitiveStyleBuilder::new()
.stroke_color(Rgb565::RED)
.stroke_width(1)
.build();
let rectangle = Rectangle::new(Point::new(20, 20), Point::new(40, 30)).into_styled(style);
Implementations§
Source§impl<C> PrimitiveStyleBuilder<C>where
C: PixelColor,
impl<C> PrimitiveStyleBuilder<C>where
C: PixelColor,
Sourcepub fn fill_color(self, fill_color: C) -> Self
pub fn fill_color(self, fill_color: C) -> Self
Sets the fill color.
Sourcepub fn stroke_color(self, stroke_color: C) -> Self
pub fn stroke_color(self, stroke_color: C) -> Self
Sets the stroke color.
Sourcepub fn stroke_width(self, stroke_width: u32) -> Self
pub fn stroke_width(self, stroke_width: u32) -> Self
Sets the stroke width.
Sourcepub fn build(self) -> PrimitiveStyle<C>
pub fn build(self) -> PrimitiveStyle<C>
Builds the primitive style.
Trait Implementations§
Source§impl<C> Clone for PrimitiveStyleBuilder<C>where
C: PixelColor + Clone,
impl<C> Clone for PrimitiveStyleBuilder<C>where
C: PixelColor + Clone,
Source§fn clone(&self) -> PrimitiveStyleBuilder<C>
fn clone(&self) -> PrimitiveStyleBuilder<C>
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read moreSource§impl<C> Debug for PrimitiveStyleBuilder<C>where
C: PixelColor + Debug,
impl<C> Debug for PrimitiveStyleBuilder<C>where
C: PixelColor + Debug,
Source§impl<C> Default for PrimitiveStyleBuilder<C>where
C: PixelColor + Default,
impl<C> Default for PrimitiveStyleBuilder<C>where
C: PixelColor + Default,
Source§fn default() -> PrimitiveStyleBuilder<C>
fn default() -> PrimitiveStyleBuilder<C>
Source§impl<C> Hash for PrimitiveStyleBuilder<C>where
C: PixelColor + Hash,
impl<C> Hash for PrimitiveStyleBuilder<C>where
C: PixelColor + Hash,
Source§impl<C> Ord for PrimitiveStyleBuilder<C>where
C: PixelColor + Ord,
impl<C> Ord for PrimitiveStyleBuilder<C>where
C: PixelColor + Ord,
Source§fn cmp(&self, other: &PrimitiveStyleBuilder<C>) -> Ordering
fn cmp(&self, other: &PrimitiveStyleBuilder<C>) -> Ordering
1.21.0 · Source§fn max(self, other: Self) -> Selfwhere
Self: Sized,
fn max(self, other: Self) -> Selfwhere
Self: Sized,
Source§impl<C> PartialEq for PrimitiveStyleBuilder<C>where
C: PixelColor + PartialEq,
impl<C> PartialEq for PrimitiveStyleBuilder<C>where
C: PixelColor + PartialEq,
Source§impl<C> PartialOrd for PrimitiveStyleBuilder<C>where
C: PixelColor + PartialOrd,
impl<C> PartialOrd for PrimitiveStyleBuilder<C>where
C: PixelColor + PartialOrd,
impl<C> Copy for PrimitiveStyleBuilder<C>where
C: PixelColor + Copy,
impl<C> Eq for PrimitiveStyleBuilder<C>where
C: PixelColor + Eq,
impl<C> StructuralPartialEq for PrimitiveStyleBuilder<C>where
C: PixelColor,
Auto Trait Implementations§
impl<C> Freeze for PrimitiveStyleBuilder<C>where
C: Freeze,
impl<C> RefUnwindSafe for PrimitiveStyleBuilder<C>where
C: RefUnwindSafe,
impl<C> Send for PrimitiveStyleBuilder<C>where
C: Send,
impl<C> Sync for PrimitiveStyleBuilder<C>where
C: Sync,
impl<C> Unpin for PrimitiveStyleBuilder<C>where
C: Unpin,
impl<C> UnwindSafe for PrimitiveStyleBuilder<C>where
C: 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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§unsafe fn clone_to_uninit(&self, dst: *mut T)
unsafe fn clone_to_uninit(&self, dst: *mut T)
clone_to_uninit
)Layout§
Note: Unable to compute type layout, possibly due to this type having generic parameters. Layout can only be computed for concrete, fully-instantiated types.