#[non_exhaustive]pub struct PrimitiveStyle<C>where
C: PixelColor,{
pub fill_color: Option<C>,
pub stroke_color: Option<C>,
pub stroke_width: u32,
pub stroke_alignment: StrokeAlignment,
}
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
, the with_stroke
and
with_fill
methods can be used for styles that only require a stroke or
fill respectively. For more complex styles, use the 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: u32
Stroke width in pixels.
stroke_alignment: StrokeAlignment
Stroke alignment.
The stroke alignment sets if the stroke is drawn inside, outside or centered on the outline of a shape.
This property only applies to closed shapes (rectangle, circle, …) and is ignored for open shapes (line, …).
Implementations§
Source§impl<C> PrimitiveStyle<C>where
C: PixelColor,
impl<C> PrimitiveStyle<C>where
C: PixelColor,
Sourcepub const fn with_stroke(stroke_color: C, stroke_width: u32) -> Self
pub const 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.
Sourcepub const fn is_transparent(&self) -> bool
pub const fn is_transparent(&self) -> bool
Returns if a primitive drawn with this style is completely transparent.
Trait Implementations§
Source§impl<C> Clone for PrimitiveStyle<C>where
C: PixelColor + Clone,
impl<C> Clone for PrimitiveStyle<C>where
C: PixelColor + Clone,
Source§fn clone(&self) -> PrimitiveStyle<C>
fn clone(&self) -> PrimitiveStyle<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 PrimitiveStyle<C>where
C: PixelColor + Debug,
impl<C> Debug for PrimitiveStyle<C>where
C: PixelColor + Debug,
Source§impl<C> Default for PrimitiveStyle<C>where
C: PixelColor,
impl<C> Default for PrimitiveStyle<C>where
C: PixelColor,
Source§impl<C> Format for PrimitiveStyle<C>
impl<C> Format for PrimitiveStyle<C>
Source§impl<C> From<&PrimitiveStyle<C>> for PrimitiveStyleBuilder<C>where
C: PixelColor,
impl<C> From<&PrimitiveStyle<C>> for PrimitiveStyleBuilder<C>where
C: PixelColor,
Source§fn from(style: &PrimitiveStyle<C>) -> Self
fn from(style: &PrimitiveStyle<C>) -> Self
Source§impl<C> Hash for PrimitiveStyle<C>where
C: PixelColor + Hash,
impl<C> Hash for PrimitiveStyle<C>where
C: PixelColor + Hash,
Source§impl<C> Ord for PrimitiveStyle<C>where
C: PixelColor + Ord,
impl<C> Ord for PrimitiveStyle<C>where
C: PixelColor + Ord,
Source§fn cmp(&self, other: &PrimitiveStyle<C>) -> Ordering
fn cmp(&self, other: &PrimitiveStyle<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 PrimitiveStyle<C>where
C: PixelColor + PartialEq,
impl<C> PartialEq for PrimitiveStyle<C>where
C: PixelColor + PartialEq,
Source§impl<C> PartialOrd for PrimitiveStyle<C>where
C: PixelColor + PartialOrd,
impl<C> PartialOrd for PrimitiveStyle<C>where
C: PixelColor + PartialOrd,
Source§impl<C: PixelColor> StyledDimensions<PrimitiveStyle<C>> for Arc
impl<C: PixelColor> StyledDimensions<PrimitiveStyle<C>> for Arc
Source§fn styled_bounding_box(&self, style: &PrimitiveStyle<C>) -> Rectangle
fn styled_bounding_box(&self, style: &PrimitiveStyle<C>) -> Rectangle
Source§impl<C: PixelColor> StyledDimensions<PrimitiveStyle<C>> for Circle
impl<C: PixelColor> StyledDimensions<PrimitiveStyle<C>> for Circle
Source§fn styled_bounding_box(&self, style: &PrimitiveStyle<C>) -> Rectangle
fn styled_bounding_box(&self, style: &PrimitiveStyle<C>) -> Rectangle
Source§impl<C: PixelColor> StyledDimensions<PrimitiveStyle<C>> for Ellipse
impl<C: PixelColor> StyledDimensions<PrimitiveStyle<C>> for Ellipse
Source§fn styled_bounding_box(&self, style: &PrimitiveStyle<C>) -> Rectangle
fn styled_bounding_box(&self, style: &PrimitiveStyle<C>) -> Rectangle
Source§impl<C: PixelColor> StyledDimensions<PrimitiveStyle<C>> for Line
impl<C: PixelColor> StyledDimensions<PrimitiveStyle<C>> for Line
Source§fn styled_bounding_box(&self, style: &PrimitiveStyle<C>) -> Rectangle
fn styled_bounding_box(&self, style: &PrimitiveStyle<C>) -> Rectangle
Source§impl<C: PixelColor> StyledDimensions<PrimitiveStyle<C>> for Polyline<'_>
impl<C: PixelColor> StyledDimensions<PrimitiveStyle<C>> for Polyline<'_>
Source§fn styled_bounding_box(&self, style: &PrimitiveStyle<C>) -> Rectangle
fn styled_bounding_box(&self, style: &PrimitiveStyle<C>) -> Rectangle
Source§impl<C: PixelColor> StyledDimensions<PrimitiveStyle<C>> for Rectangle
impl<C: PixelColor> StyledDimensions<PrimitiveStyle<C>> for Rectangle
Source§fn styled_bounding_box(&self, style: &PrimitiveStyle<C>) -> Rectangle
fn styled_bounding_box(&self, style: &PrimitiveStyle<C>) -> Rectangle
Source§impl<C: PixelColor> StyledDimensions<PrimitiveStyle<C>> for RoundedRectangle
impl<C: PixelColor> StyledDimensions<PrimitiveStyle<C>> for RoundedRectangle
Source§fn styled_bounding_box(&self, style: &PrimitiveStyle<C>) -> Rectangle
fn styled_bounding_box(&self, style: &PrimitiveStyle<C>) -> Rectangle
Source§impl<C: PixelColor> StyledDimensions<PrimitiveStyle<C>> for Sector
impl<C: PixelColor> StyledDimensions<PrimitiveStyle<C>> for Sector
Source§fn styled_bounding_box(&self, style: &PrimitiveStyle<C>) -> Rectangle
fn styled_bounding_box(&self, style: &PrimitiveStyle<C>) -> Rectangle
Source§impl<C: PixelColor> StyledDimensions<PrimitiveStyle<C>> for Triangle
impl<C: PixelColor> StyledDimensions<PrimitiveStyle<C>> for Triangle
Source§fn styled_bounding_box(&self, style: &PrimitiveStyle<C>) -> Rectangle
fn styled_bounding_box(&self, style: &PrimitiveStyle<C>) -> Rectangle
Source§impl<C: PixelColor> StyledDrawable<PrimitiveStyle<C>> for Arc
impl<C: PixelColor> StyledDrawable<PrimitiveStyle<C>> for Arc
Source§impl<C: PixelColor> StyledDrawable<PrimitiveStyle<C>> for Circle
impl<C: PixelColor> StyledDrawable<PrimitiveStyle<C>> for Circle
Source§impl<C: PixelColor> StyledDrawable<PrimitiveStyle<C>> for Ellipse
impl<C: PixelColor> StyledDrawable<PrimitiveStyle<C>> for Ellipse
Source§impl<C: PixelColor> StyledDrawable<PrimitiveStyle<C>> for Line
impl<C: PixelColor> StyledDrawable<PrimitiveStyle<C>> for Line
Source§impl<C: PixelColor> StyledDrawable<PrimitiveStyle<C>> for Polyline<'_>
impl<C: PixelColor> StyledDrawable<PrimitiveStyle<C>> for Polyline<'_>
Source§impl<C: PixelColor> StyledDrawable<PrimitiveStyle<C>> for Rectangle
impl<C: PixelColor> StyledDrawable<PrimitiveStyle<C>> for Rectangle
Source§impl<C: PixelColor> StyledDrawable<PrimitiveStyle<C>> for RoundedRectangle
impl<C: PixelColor> StyledDrawable<PrimitiveStyle<C>> for RoundedRectangle
Source§impl<C: PixelColor> StyledDrawable<PrimitiveStyle<C>> for Sector
impl<C: PixelColor> StyledDrawable<PrimitiveStyle<C>> for Sector
Source§impl<C: PixelColor> StyledDrawable<PrimitiveStyle<C>> for Triangle
impl<C: PixelColor> StyledDrawable<PrimitiveStyle<C>> for Triangle
impl<C> Copy for PrimitiveStyle<C>where
C: PixelColor + Copy,
impl<C> Eq for PrimitiveStyle<C>where
C: PixelColor + Eq,
impl<C> StructuralPartialEq for PrimitiveStyle<C>where
C: PixelColor,
Auto Trait Implementations§
impl<C> Freeze for PrimitiveStyle<C>where
C: Freeze,
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§
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> CheckedAs for T
impl<T> CheckedAs for T
Source§fn checked_as<Dst>(self) -> Option<Dst>where
T: CheckedCast<Dst>,
fn checked_as<Dst>(self) -> Option<Dst>where
T: CheckedCast<Dst>,
Source§impl<Src, Dst> CheckedCastFrom<Src> for Dstwhere
Src: CheckedCast<Dst>,
impl<Src, Dst> CheckedCastFrom<Src> for Dstwhere
Src: CheckedCast<Dst>,
Source§fn checked_cast_from(src: Src) -> Option<Dst>
fn checked_cast_from(src: Src) -> Option<Dst>
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<Src, Dst> LosslessTryInto<Dst> for Srcwhere
Dst: LosslessTryFrom<Src>,
impl<Src, Dst> LosslessTryInto<Dst> for Srcwhere
Dst: LosslessTryFrom<Src>,
Source§fn lossless_try_into(self) -> Option<Dst>
fn lossless_try_into(self) -> Option<Dst>
Source§impl<Src, Dst> LossyInto<Dst> for Srcwhere
Dst: LossyFrom<Src>,
impl<Src, Dst> LossyInto<Dst> for Srcwhere
Dst: LossyFrom<Src>,
Source§fn lossy_into(self) -> Dst
fn lossy_into(self) -> Dst
Source§impl<T> OverflowingAs for T
impl<T> OverflowingAs for T
Source§fn overflowing_as<Dst>(self) -> (Dst, bool)where
T: OverflowingCast<Dst>,
fn overflowing_as<Dst>(self) -> (Dst, bool)where
T: OverflowingCast<Dst>,
Source§impl<Src, Dst> OverflowingCastFrom<Src> for Dstwhere
Src: OverflowingCast<Dst>,
impl<Src, Dst> OverflowingCastFrom<Src> for Dstwhere
Src: OverflowingCast<Dst>,
Source§fn overflowing_cast_from(src: Src) -> (Dst, bool)
fn overflowing_cast_from(src: Src) -> (Dst, bool)
Source§impl<T> SaturatingAs for T
impl<T> SaturatingAs for T
Source§fn saturating_as<Dst>(self) -> Dstwhere
T: SaturatingCast<Dst>,
fn saturating_as<Dst>(self) -> Dstwhere
T: SaturatingCast<Dst>,
Source§impl<Src, Dst> SaturatingCastFrom<Src> for Dstwhere
Src: SaturatingCast<Dst>,
impl<Src, Dst> SaturatingCastFrom<Src> for Dstwhere
Src: SaturatingCast<Dst>,
Source§fn saturating_cast_from(src: Src) -> Dst
fn saturating_cast_from(src: Src) -> Dst
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>
self
from the equivalent element of its
superset. Read moreSource§fn is_in_subset(&self) -> bool
fn is_in_subset(&self) -> bool
self
is actually part of its subset T
(and can be converted to it).Source§fn to_subset_unchecked(&self) -> SS
fn to_subset_unchecked(&self) -> SS
self.to_subset
but without any property checks. Always succeeds.Source§fn from_subset(element: &SS) -> SP
fn from_subset(element: &SS) -> SP
self
to the equivalent element of its superset.