#[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,
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 · Source§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> Format for MonoTextStyle<'a, C>
impl<'a, C> Format 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§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§
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
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.
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>
Performs the conversion.
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
Performs the conversion.
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.
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>
The inverse inclusion map: attempts to construct
self
from the equivalent element of its
superset. Read moreSource§fn is_in_subset(&self) -> bool
fn is_in_subset(&self) -> bool
Checks if
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
Use with care! Same as
self.to_subset
but without any property checks. Always succeeds.Source§fn from_subset(element: &SS) -> SP
fn from_subset(element: &SS) -> SP
The inclusion map: converts
self
to the equivalent element of its superset.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.