Struct comfy_wgpu::epaint::text::TextFormat
pub struct TextFormat {
pub font_id: FontId,
pub color: Color32,
pub background: Color32,
pub italics: bool,
pub underline: Stroke,
pub strikethrough: Stroke,
pub valign: Align,
}Fields§
§font_id: FontId§color: Color32Text color
background: Color32§italics: bool§underline: Stroke§strikethrough: Stroke§valign: AlignIf you use a small font and Align::TOP you
can get the effect of raised text.
Implementations§
§impl TextFormat
impl TextFormat
pub fn simple(font_id: FontId, color: Color32) -> TextFormat
Trait Implementations§
§impl Clone for TextFormat
impl Clone for TextFormat
§fn clone(&self) -> TextFormat
fn clone(&self) -> TextFormat
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 more§impl Debug for TextFormat
impl Debug for TextFormat
§impl Default for TextFormat
impl Default for TextFormat
§fn default() -> TextFormat
fn default() -> TextFormat
Returns the “default value” for a type. Read more
§impl Hash for TextFormat
impl Hash for TextFormat
§impl PartialEq<TextFormat> for TextFormat
impl PartialEq<TextFormat> for TextFormat
§fn eq(&self, other: &TextFormat) -> bool
fn eq(&self, other: &TextFormat) -> bool
This method tests for
self and other values to be equal, and is used
by ==.impl StructuralPartialEq for TextFormat
Auto Trait Implementations§
impl RefUnwindSafe for TextFormat
impl Send for TextFormat
impl Sync for TextFormat
impl Unpin for TextFormat
impl UnwindSafe for TextFormat
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