#[non_exhaustive]pub struct MultiMonoTextStyle<'a, C> {
pub text_color: C,
pub background_color: Option<C>,
pub fonts: MultiMonoFontList<'a>,
pub line_height: ChSzTy,
}Expand description
Style properties for text using a monospaced font.
A MultiMonoTextStyle can be applied to a Text object to define how the text is drawn.
Because MultiMonoTextStyle has the non_exhaustive attribute, it cannot be created using a
struct literal. To create a MultiMonoTextStyle with a given text color and transparent
background, use the new method. For more complex text styles, use the
MultiMonoTextStyleBuilder.
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: CText color.
background_color: Option<C>Background color.
fonts: MultiMonoFontList<'a>Font.
line_height: ChSzTyLine height
Implementations§
Source§impl<'a, C> MultiMonoTextStyle<'a, C>where
C: PixelColor,
impl<'a, C> MultiMonoTextStyle<'a, C>where
C: PixelColor,
Sourcepub const fn new(font_list: MultiMonoFontList<'a>, text_color: C) -> Self
pub const fn new(font_list: MultiMonoFontList<'a>, text_color: C) -> Self
Creates a text style with transparent background.
pub const fn new_with_line_height( font_list: MultiMonoFontList<'a>, line_height: MultiMonoLineHeight, text_color: C, ) -> Self
Trait Implementations§
Source§impl<C> CharacterStyle for MultiMonoTextStyle<'_, C>where
C: PixelColor,
impl<C> CharacterStyle for MultiMonoTextStyle<'_, 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 MultiMonoTextStyle<'a, C>
impl<'a, C: Clone> Clone for MultiMonoTextStyle<'a, C>
Source§fn clone(&self) -> MultiMonoTextStyle<'a, C>
fn clone(&self) -> MultiMonoTextStyle<'a, C>
Returns a duplicate 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 MultiMonoTextStyle<'a, C>
impl<'a, C: Debug> Debug for MultiMonoTextStyle<'a, C>
Source§impl<'a, C> From<&MultiMonoTextStyle<'a, C>> for MultiMonoTextStyleBuilder<'a, C>where
C: PixelColor,
impl<'a, C> From<&MultiMonoTextStyle<'a, C>> for MultiMonoTextStyleBuilder<'a, C>where
C: PixelColor,
Source§fn from(style: &MultiMonoTextStyle<'a, C>) -> Self
fn from(style: &MultiMonoTextStyle<'a, C>) -> Self
Converts to this type from the input type.
Source§impl<'a, C: PartialEq> PartialEq for MultiMonoTextStyle<'a, C>
impl<'a, C: PartialEq> PartialEq for MultiMonoTextStyle<'a, C>
Source§impl<C> TextRenderer for MultiMonoTextStyle<'_, C>where
C: PixelColor,
impl<C> TextRenderer for MultiMonoTextStyle<'_, 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 MultiMonoTextStyle<'a, C>
impl<'a, C> StructuralPartialEq for MultiMonoTextStyle<'a, C>
Auto Trait Implementations§
impl<'a, C> Freeze for MultiMonoTextStyle<'a, C>where
C: Freeze,
impl<'a, C> RefUnwindSafe for MultiMonoTextStyle<'a, C>where
C: RefUnwindSafe,
impl<'a, C> Send for MultiMonoTextStyle<'a, C>where
C: Send,
impl<'a, C> Sync for MultiMonoTextStyle<'a, C>where
C: Sync,
impl<'a, C> Unpin for MultiMonoTextStyle<'a, C>where
C: Unpin,
impl<'a, C> UnwindSafe for MultiMonoTextStyle<'a, 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
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<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<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.