Expand description
Alias for a FontId
(font of a certain size).
The font is found via look-up in Style::text_styles
.
You can use TextStyle::resolve
to do this lookup.
Variants
Small
Used when small text is needed.
Body
Normal labels. Easily readable, doesn’t take up too much space.
Monospace
Same size as Self::Body
, but used when monospace is important (for aligning number, code snippets, etc).
Button
Buttons. Maybe slightly bigger than Self::Body
.
Signifies that he item is interactive.
Heading
Heading. Probably larger than Self::Body
.
Name(Arc<str>)
A user-chosen style, found in Style::text_styles
.
egui::TextStyle::Name("footing".into());
Implementations
Trait Implementations
sourceimpl From<TextStyle> for FontSelection
impl From<TextStyle> for FontSelection
sourcefn from(text_style: TextStyle) -> FontSelection
fn from(text_style: TextStyle) -> FontSelection
Converts to this type from the input type.
sourceimpl Ord for TextStyle
impl Ord for TextStyle
1.21.0 · sourceconst fn max(self, other: Self) -> Self
const fn max(self, other: Self) -> Self
Compares and returns the maximum of two values. Read more
1.21.0 · sourceconst fn min(self, other: Self) -> Self
const fn min(self, other: Self) -> Self
Compares and returns the minimum of two values. Read more
1.50.0 · sourceconst fn clamp(self, min: Self, max: Self) -> Selfwhere
Self: PartialOrd<Self>,
const fn clamp(self, min: Self, max: Self) -> Selfwhere
Self: PartialOrd<Self>,
Restrict a value to a certain interval. Read more
sourceimpl PartialOrd<TextStyle> for TextStyle
impl PartialOrd<TextStyle> for TextStyle
sourcefn partial_cmp(&self, other: &TextStyle) -> Option<Ordering>
fn partial_cmp(&self, other: &TextStyle) -> Option<Ordering>
1.0.0 · sourceconst fn le(&self, other: &Rhs) -> bool
const 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 moreimpl Eq for TextStyle
impl StructuralEq for TextStyle
impl StructuralPartialEq for TextStyle
Auto Trait Implementations
impl RefUnwindSafe for TextStyle
impl Send for TextStyle
impl Sync for TextStyle
impl Unpin for TextStyle
impl UnwindSafe for TextStyle
Blanket Implementations
sourceimpl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more