#[non_exhaustive]
pub struct SevenSegmentStyle<C> { pub digit_size: Size, pub digit_spacing: u32, pub segment_width: u32, pub segment_color: Option<C>, pub inactive_segment_color: Option<C>, }
Expand description

Seven-segment character style.

Use SevenSegmentStyleBuilder to build styles.

Fields (Non-exhaustive)§

This struct is marked as non-exhaustive
Non-exhaustive structs could have additional fields added in future. Therefore, non-exhaustive structs cannot be constructed in external crates using the traditional Struct { .. } syntax; cannot be matched against without a wildcard ..; and struct update syntax will not work.
§digit_size: Size

The size of each digit.

§digit_spacing: u32

The spacing between adjacent digits.

§segment_width: u32

The width of the segments.

§segment_color: Option<C>

The color of active segments.

§inactive_segment_color: Option<C>

The color of inactive segments.

Trait Implementations§

source§

impl<C: PixelColor> CharacterStyle for SevenSegmentStyle<C>

§

type Color = C

The color type.
source§

fn set_text_color(&mut self, text_color: Option<Self::Color>)

Sets the text color.
source§

fn set_background_color(&mut self, _background_color: Option<Self::Color>)

Sets the background color.
source§

fn set_underline_color( &mut self, _underline_color: DecorationColor<Self::Color> )

Sets the underline color.
source§

fn set_strikethrough_color( &mut self, _strikethrough_color: DecorationColor<Self::Color> )

Sets the strikethrough color.
source§

impl<C: Clone> Clone for SevenSegmentStyle<C>

source§

fn clone(&self) -> SevenSegmentStyle<C>

Returns a copy of the value. Read more
1.0.0 · source§

fn clone_from(&mut self, source: &Self)

Performs copy-assignment from source. Read more
source§

impl<C: Debug> Debug for SevenSegmentStyle<C>

source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
source§

impl<C: PixelColor> From<&SevenSegmentStyle<C>> for SevenSegmentStyleBuilder<C>

source§

fn from(style: &SevenSegmentStyle<C>) -> Self

Converts to this type from the input type.
source§

impl<C: Hash> Hash for SevenSegmentStyle<C>

source§

fn hash<__H: Hasher>(&self, state: &mut __H)

Feeds this value into the given Hasher. Read more
1.3.0 · source§

fn hash_slice<H>(data: &[Self], state: &mut H)where H: Hasher, Self: Sized,

Feeds a slice of this type into the given Hasher. Read more
source§

impl<C: Ord> Ord for SevenSegmentStyle<C>

source§

fn cmp(&self, other: &SevenSegmentStyle<C>) -> Ordering

This method returns an Ordering between self and other. Read more
1.21.0 · source§

fn max(self, other: Self) -> Selfwhere Self: Sized,

Compares and returns the maximum of two values. Read more
1.21.0 · source§

fn min(self, other: Self) -> Selfwhere Self: Sized,

Compares and returns the minimum of two values. Read more
1.50.0 · source§

fn clamp(self, min: Self, max: Self) -> Selfwhere Self: Sized + PartialOrd,

Restrict a value to a certain interval. Read more
source§

impl<C: PartialEq> PartialEq for SevenSegmentStyle<C>

source§

fn eq(&self, other: &SevenSegmentStyle<C>) -> bool

This method tests for self and other values to be equal, and is used by ==.
1.0.0 · source§

fn ne(&self, other: &Rhs) -> bool

This method tests for !=. The default implementation is almost always sufficient, and should not be overridden without very good reason.
source§

impl<C: PartialOrd> PartialOrd for SevenSegmentStyle<C>

source§

fn partial_cmp(&self, other: &SevenSegmentStyle<C>) -> Option<Ordering>

This method returns an ordering between self and other values if one exists. Read more
1.0.0 · source§

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 · source§

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
1.0.0 · source§

fn gt(&self, other: &Rhs) -> bool

This method tests greater than (for self and other) and is used by the > operator. Read more
1.0.0 · source§

fn ge(&self, other: &Rhs) -> bool

This method tests greater than or equal to (for self and other) and is used by the >= operator. Read more
source§

impl<C: PixelColor> StyledDrawable<SevenSegmentStyle<C>> for Digit

§

type Color = C

Color type.
§

type Output = Point

Output type.
source§

fn draw_styled<D>( &self, style: &SevenSegmentStyle<C>, target: &mut D ) -> Result<Self::Output, D::Error>where D: DrawTarget<Color = Self::Color>,

Draws the primitive using the given style.
source§

impl<C: PixelColor> TextRenderer for SevenSegmentStyle<C>

§

type Color = C

Color type.
source§

fn draw_string<D>( &self, text: &str, position: Point, baseline: Baseline, target: &mut D ) -> Result<Point, D::Error>where D: DrawTarget<Color = C>,

Draws a string. Read more
source§

fn draw_whitespace<D>( &self, width: u32, position: Point, _baseline: Baseline, _target: &mut D ) -> Result<Point, D::Error>where D: DrawTarget<Color = C>,

Draws whitespace of the given width. Read more
source§

fn measure_string( &self, text: &str, position: Point, baseline: Baseline ) -> TextMetrics

Returns the text metrics for a string. Read more
source§

fn line_height(&self) -> u32

Returns the default line height. Read more
source§

impl<C: Copy> Copy for SevenSegmentStyle<C>

source§

impl<C: Eq> Eq for SevenSegmentStyle<C>

source§

impl<C> StructuralEq for SevenSegmentStyle<C>

source§

impl<C> StructuralPartialEq for SevenSegmentStyle<C>

Auto Trait Implementations§

§

impl<C> RefUnwindSafe for SevenSegmentStyle<C>where C: RefUnwindSafe,

§

impl<C> Send for SevenSegmentStyle<C>where C: Send,

§

impl<C> Sync for SevenSegmentStyle<C>where C: Sync,

§

impl<C> Unpin for SevenSegmentStyle<C>where C: Unpin,

§

impl<C> UnwindSafe for SevenSegmentStyle<C>where C: UnwindSafe,

Blanket Implementations§

source§

impl<T> Any for Twhere T: 'static + ?Sized,

source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
source§

impl<T> Az for T

source§

fn az<Dst>(self) -> Dstwhere T: Cast<Dst>,

Casts the value.
source§

impl<T> Borrow<T> for Twhere T: ?Sized,

source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
source§

impl<T> BorrowMut<T> for Twhere T: ?Sized,

source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
source§

impl<Src, Dst> CastFrom<Src> for Dstwhere Src: Cast<Dst>,

source§

fn cast_from(src: Src) -> Dst

Casts the value.
source§

impl<T> CheckedAs for T

source§

fn checked_as<Dst>(self) -> Option<Dst>where T: CheckedCast<Dst>,

Casts the value.
source§

impl<Src, Dst> CheckedCastFrom<Src> for Dstwhere Src: CheckedCast<Dst>,

source§

fn checked_cast_from(src: Src) -> Option<Dst>

Casts the value.
source§

impl<T> From<T> for T

source§

fn from(t: T) -> T

Returns the argument unchanged.

source§

impl<T, U> Into<U> for Twhere U: From<T>,

source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

source§

impl<T> OverflowingAs for T

source§

fn overflowing_as<Dst>(self) -> (Dst, bool)where T: OverflowingCast<Dst>,

Casts the value.
source§

impl<Src, Dst> OverflowingCastFrom<Src> for Dstwhere Src: OverflowingCast<Dst>,

source§

fn overflowing_cast_from(src: Src) -> (Dst, bool)

Casts the value.
source§

impl<T> SaturatingAs for T

source§

fn saturating_as<Dst>(self) -> Dstwhere T: SaturatingCast<Dst>,

Casts the value.
source§

impl<Src, Dst> SaturatingCastFrom<Src> for Dstwhere Src: SaturatingCast<Dst>,

source§

fn saturating_cast_from(src: Src) -> Dst

Casts the value.
source§

impl<T, U> TryFrom<U> for Twhere U: Into<T>,

§

type Error = Infallible

The type returned in the event of a conversion error.
source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
source§

impl<T, U> TryInto<U> for Twhere U: TryFrom<T>,

§

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.
source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.
source§

impl<T> UnwrappedAs for T

source§

fn unwrapped_as<Dst>(self) -> Dstwhere T: UnwrappedCast<Dst>,

Casts the value.
source§

impl<Src, Dst> UnwrappedCastFrom<Src> for Dstwhere Src: UnwrappedCast<Dst>,

source§

fn unwrapped_cast_from(src: Src) -> Dst

Casts the value.
source§

impl<T> WrappingAs for T

source§

fn wrapping_as<Dst>(self) -> Dstwhere T: WrappingCast<Dst>,

Casts the value.
source§

impl<Src, Dst> WrappingCastFrom<Src> for Dstwhere Src: WrappingCast<Dst>,

source§

fn wrapping_cast_from(src: Src) -> Dst

Casts the value.