Enum comfy_wgpu::egui::TextStyle
source · pub enum TextStyle {
Small,
Body,
Monospace,
Button,
Heading,
Name(Arc<str, Global>),
}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 code snippets, aligning numbers, etc).
Button
Buttons. Maybe slightly bigger than Self::Body.
Signifies that he item can be interacted with.
Heading
Heading. Probably larger than Self::Body.
Name(Arc<str, Global>)
A user-chosen style, found in Style::text_styles.
egui::TextStyle::Name("footing".into());Implementations§
Trait Implementations§
source§impl From<TextStyle> for FontSelection
impl From<TextStyle> for FontSelection
source§fn from(text_style: TextStyle) -> FontSelection
fn from(text_style: TextStyle) -> FontSelection
Converts to this type from the input type.
source§impl Ord for TextStyle
impl Ord for TextStyle
source§impl PartialEq<TextStyle> for TextStyle
impl PartialEq<TextStyle> for TextStyle
source§impl PartialOrd<TextStyle> for TextStyle
impl PartialOrd<TextStyle> for TextStyle
1.0.0 · source§fn le(&self, other: &Rhs) -> bool
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§
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
§impl<Q, K> Equivalent<K> for Qwhere
Q: Eq + ?Sized,
K: Borrow<Q> + ?Sized,
impl<Q, K> Equivalent<K> for Qwhere Q: Eq + ?Sized, K: Borrow<Q> + ?Sized,
§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Checks if this value is equivalent to the given key. Read more
source§impl<Q, K> Equivalent<K> for Qwhere
Q: Eq + ?Sized,
K: Borrow<Q> + ?Sized,
impl<Q, K> Equivalent<K> for Qwhere Q: Eq + ?Sized, K: Borrow<Q> + ?Sized,
source§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key and return true if they are equal.§impl<Q, K> Equivalent<K> for Qwhere
Q: Eq + ?Sized,
K: Borrow<Q> + ?Sized,
impl<Q, K> Equivalent<K> for Qwhere Q: Eq + ?Sized, K: Borrow<Q> + ?Sized,
§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Checks if this value is equivalent to the given key. Read more