#[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§
Source§impl<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§
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> 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,
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> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
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.