Struct embedded_graphics::mono_font::MonoTextStyle
source · #[non_exhaustive]pub struct MonoTextStyle<'a, C> {
pub text_color: Option<C>,
pub background_color: Option<C>,
pub underline_color: DecorationColor<C>,
pub strikethrough_color: DecorationColor<C>,
pub font: &'a MonoFont<'a>,
}
Expand description
Style properties for text using a monospaced font.
A MonoTextStyle
can be applied to a Text
object to define how the text is drawn.
Because MonoTextStyle
has the non_exhaustive
attribute, it cannot be created using a
struct literal. To create a MonoTextStyle
with a given text color and transparent
background, use the new
method. For more complex text styles, use the
MonoTextStyleBuilder
.
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.text_color: Option<C>
Text color.
background_color: Option<C>
Background color.
underline_color: DecorationColor<C>
Underline color.
strikethrough_color: DecorationColor<C>
Strikethrough color.
font: &'a MonoFont<'a>
Font.
Implementations§
source§impl<'a, C> MonoTextStyle<'a, C>where
C: PixelColor,
impl<'a, C> MonoTextStyle<'a, C>where
C: PixelColor,
sourcepub const fn new(font: &'a MonoFont<'a>, text_color: C) -> Self
pub const fn new(font: &'a MonoFont<'a>, text_color: C) -> Self
Creates a text style with transparent background.
sourcepub fn is_transparent(&self) -> bool
pub fn is_transparent(&self) -> bool
Returns true
if the style is transparent.
Drawing a Text
with a transparent MonoTextStyle
will not draw any pixels.
Trait Implementations§
source§impl<C> CharacterStyle for MonoTextStyle<'_, C>where
C: PixelColor,
impl<C> CharacterStyle for MonoTextStyle<'_, C>where
C: PixelColor,
source§fn set_text_color(&mut self, text_color: Option<Self::Color>)
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>)
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>)
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>,
)
fn set_strikethrough_color( &mut self, strikethrough_color: DecorationColor<Self::Color>, )
Sets the strikethrough color.
source§impl<'a, C: Clone> Clone for MonoTextStyle<'a, C>
impl<'a, C: Clone> Clone for MonoTextStyle<'a, C>
source§fn clone(&self) -> MonoTextStyle<'a, C>
fn clone(&self) -> MonoTextStyle<'a, C>
Returns a copy of the value. Read more
1.0.0§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moresource§impl<'a, C: Debug> Debug for MonoTextStyle<'a, C>
impl<'a, C: Debug> Debug for MonoTextStyle<'a, C>
source§impl<'a, C> From<&MonoTextStyle<'a, C>> for MonoTextStyleBuilder<'a, C>where
C: PixelColor,
impl<'a, C> From<&MonoTextStyle<'a, C>> for MonoTextStyleBuilder<'a, C>where
C: PixelColor,
source§fn from(style: &MonoTextStyle<'a, C>) -> Self
fn from(style: &MonoTextStyle<'a, C>) -> Self
Converts to this type from the input type.
source§impl<'a, C: PartialEq> PartialEq for MonoTextStyle<'a, C>
impl<'a, C: PartialEq> PartialEq for MonoTextStyle<'a, C>
source§fn eq(&self, other: &MonoTextStyle<'a, C>) -> bool
fn eq(&self, other: &MonoTextStyle<'a, C>) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.source§impl<C> TextRenderer for MonoTextStyle<'_, C>where
C: PixelColor,
impl<C> TextRenderer for MonoTextStyle<'_, C>where
C: PixelColor,
source§fn draw_string<D>(
&self,
text: &str,
position: Point,
baseline: Baseline,
target: &mut D,
) -> Result<Point, D::Error>where
D: DrawTarget<Color = Self::Color>,
fn draw_string<D>(
&self,
text: &str,
position: Point,
baseline: Baseline,
target: &mut D,
) -> Result<Point, D::Error>where
D: DrawTarget<Color = Self::Color>,
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 = Self::Color>,
fn draw_whitespace<D>(
&self,
width: u32,
position: Point,
baseline: Baseline,
target: &mut D,
) -> Result<Point, D::Error>where
D: DrawTarget<Color = Self::Color>,
Draws whitespace of the given width. Read more
source§fn measure_string(
&self,
text: &str,
position: Point,
baseline: Baseline,
) -> TextMetrics
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
fn line_height(&self) -> u32
Returns the default line height. Read more
impl<'a, C: Copy> Copy for MonoTextStyle<'a, C>
impl<'a, C> StructuralPartialEq for MonoTextStyle<'a, C>
Auto Trait Implementations§
impl<'a, C> Freeze for MonoTextStyle<'a, C>where
C: Freeze,
impl<'a, C> !RefUnwindSafe for MonoTextStyle<'a, C>
impl<'a, C> Send for MonoTextStyle<'a, C>where
C: Send,
impl<'a, C> Sync for MonoTextStyle<'a, C>where
C: Sync,
impl<'a, C> Unpin for MonoTextStyle<'a, C>where
C: Unpin,
impl<'a, C> !UnwindSafe for MonoTextStyle<'a, C>
Blanket Implementations§
§impl<T> Any for Twhere
T: 'static + ?Sized,
impl<T> Any for Twhere
T: 'static + ?Sized,
§impl<T> Borrow<T> for Twhere
T: ?Sized,
impl<T> Borrow<T> for Twhere
T: ?Sized,
§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
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>,
Casts the value.
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>
Casts the value.
§impl<T, U> Into<U> for Twhere
U: From<T>,
impl<T, U> Into<U> for Twhere
U: From<T>,
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>,
Casts the value.
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)
Casts the value.
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>,
Casts the value.
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
Casts the value.
§impl<T, U> TryFrom<U> for Twhere
U: Into<T>,
impl<T, U> TryFrom<U> for Twhere
U: Into<T>,
§impl<T, U> TryInto<U> for Twhere
U: TryFrom<T>,
impl<T, U> TryInto<U> for Twhere
U: TryFrom<T>,
source§impl<T> UnwrappedAs for T
impl<T> UnwrappedAs for T
source§fn unwrapped_as<Dst>(self) -> Dstwhere
T: UnwrappedCast<Dst>,
fn unwrapped_as<Dst>(self) -> Dstwhere
T: UnwrappedCast<Dst>,
Casts the value.
source§impl<Src, Dst> UnwrappedCastFrom<Src> for Dstwhere
Src: UnwrappedCast<Dst>,
impl<Src, Dst> UnwrappedCastFrom<Src> for Dstwhere
Src: UnwrappedCast<Dst>,
source§fn unwrapped_cast_from(src: Src) -> Dst
fn unwrapped_cast_from(src: Src) -> Dst
Casts the value.
source§impl<T> WrappingAs for T
impl<T> WrappingAs for T
source§fn wrapping_as<Dst>(self) -> Dstwhere
T: WrappingCast<Dst>,
fn wrapping_as<Dst>(self) -> Dstwhere
T: WrappingCast<Dst>,
Casts the value.
source§impl<Src, Dst> WrappingCastFrom<Src> for Dstwhere
Src: WrappingCast<Dst>,
impl<Src, Dst> WrappingCastFrom<Src> for Dstwhere
Src: WrappingCast<Dst>,
source§fn wrapping_cast_from(src: Src) -> Dst
fn wrapping_cast_from(src: Src) -> Dst
Casts the value.