Struct embedded_graphics::style::PrimitiveStyle
source · [−]#[non_exhaustive]pub struct PrimitiveStyle<C> where
C: PixelColor, {
pub fill_color: Option<C>,
pub stroke_color: Option<C>,
pub stroke_width: u32,
}Expand description
Style properties for primitives.
PrimitiveStyle can be applied to a primitive to define how the primitive
is drawn.
Because PrimitiveStyle has the non_exhaustive attribute, it cannot be created using a
struct literal. To create a PrimitiveStyle, use the primitive_style! macro or
PrimitiveStyleBuilder.
Fields (Non-exhaustive)
This struct is marked as non-exhaustive
Struct { .. } syntax; cannot be matched against without a wildcard ..; and struct update syntax will not work.fill_color: Option<C>Fill color of the primitive.
If fill_color is set to None no fill will be drawn.
stroke_color: Option<C>Stroke color of the primitive.
If stroke_color is set to None or the stroke_width is set to 0 no stroke will be
drawn.
stroke_width: u32Stroke width in pixels.
Implementations
sourceimpl<C> PrimitiveStyle<C> where
C: PixelColor,
impl<C> PrimitiveStyle<C> where
C: PixelColor,
sourcepub fn with_stroke(stroke_color: C, stroke_width: u32) -> Self
pub fn with_stroke(stroke_color: C, stroke_width: u32) -> Self
Creates a stroke primitive style.
If the stroke_width is 0 the resulting style won’t draw a stroke.
Trait Implementations
sourceimpl<C: Clone> Clone for PrimitiveStyle<C> where
C: PixelColor,
impl<C: Clone> Clone for PrimitiveStyle<C> where
C: PixelColor,
sourcefn clone(&self) -> PrimitiveStyle<C>
fn clone(&self) -> PrimitiveStyle<C>
Returns a copy of the value. Read more
1.0.0 · sourcefn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from source. Read more
sourceimpl<C: Debug> Debug for PrimitiveStyle<C> where
C: PixelColor,
impl<C: Debug> Debug for PrimitiveStyle<C> where
C: PixelColor,
sourceimpl<C> Default for PrimitiveStyle<C> where
C: PixelColor,
impl<C> Default for PrimitiveStyle<C> where
C: PixelColor,
sourceimpl<C: Hash> Hash for PrimitiveStyle<C> where
C: PixelColor,
impl<C: Hash> Hash for PrimitiveStyle<C> where
C: PixelColor,
sourceimpl<C: Ord> Ord for PrimitiveStyle<C> where
C: PixelColor,
impl<C: Ord> Ord for PrimitiveStyle<C> where
C: PixelColor,
sourceimpl<C: PartialEq> PartialEq<PrimitiveStyle<C>> for PrimitiveStyle<C> where
C: PixelColor,
impl<C: PartialEq> PartialEq<PrimitiveStyle<C>> for PrimitiveStyle<C> where
C: PixelColor,
sourcefn eq(&self, other: &PrimitiveStyle<C>) -> bool
fn eq(&self, other: &PrimitiveStyle<C>) -> bool
This method tests for self and other values to be equal, and is used
by ==. Read more
sourcefn ne(&self, other: &PrimitiveStyle<C>) -> bool
fn ne(&self, other: &PrimitiveStyle<C>) -> bool
This method tests for !=.
sourceimpl<C: PartialOrd> PartialOrd<PrimitiveStyle<C>> for PrimitiveStyle<C> where
C: PixelColor,
impl<C: PartialOrd> PartialOrd<PrimitiveStyle<C>> for PrimitiveStyle<C> where
C: PixelColor,
sourcefn partial_cmp(&self, other: &PrimitiveStyle<C>) -> Option<Ordering>
fn partial_cmp(&self, other: &PrimitiveStyle<C>) -> Option<Ordering>
This method returns an ordering between self and other values if one exists. Read more
1.0.0 · sourcefn lt(&self, other: &Rhs) -> bool
fn lt(&self, other: &Rhs) -> bool
This method tests less than (for self and other) and is used by the < operator. Read more
1.0.0 · sourcefn le(&self, other: &Rhs) -> bool
fn le(&self, other: &Rhs) -> bool
This method tests less than or equal to (for self and other) and is used by the <=
operator. Read more
impl<C: Copy> Copy for PrimitiveStyle<C> where
C: PixelColor,
impl<C: Eq> Eq for PrimitiveStyle<C> where
C: PixelColor,
impl<C> StructuralEq for PrimitiveStyle<C> where
C: PixelColor,
impl<C> StructuralPartialEq for PrimitiveStyle<C> where
C: PixelColor,
Auto Trait Implementations
impl<C> RefUnwindSafe for PrimitiveStyle<C> where
C: RefUnwindSafe,
impl<C> Send for PrimitiveStyle<C> where
C: Send,
impl<C> Sync for PrimitiveStyle<C> where
C: Sync,
impl<C> Unpin for PrimitiveStyle<C> where
C: Unpin,
impl<C> UnwindSafe for PrimitiveStyle<C> where
C: UnwindSafe,
Blanket Implementations
sourceimpl<T> BorrowMut<T> for T where
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
const: unstable · sourcepub fn borrow_mut(&mut self) -> &mut T
pub fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more