[][src]Struct egui::paint::fonts::FontDefinitions

pub struct FontDefinitions {
    pub pixels_per_point: f32,
    pub fonts: BTreeMap<TextStyle, (FontFamily, f32)>,
    pub ttf_data: BTreeMap<FontFamily, &'static [u8]>,
}

Fields

pixels_per_point: f32

The dpi scale factor. Needed to get pixel perfect fonts.

fonts: BTreeMap<TextStyle, (FontFamily, f32)>ttf_data: BTreeMap<FontFamily, &'static [u8]>

The TTF data for each font family. Egui has built-in-default for these, but you can override them if you like.

Implementations

impl FontDefinitions[src]

pub fn ui(&mut self, ui: &mut Ui)[src]

impl FontDefinitions[src]

pub fn with_pixels_per_point(pixels_per_point: f32) -> Self[src]

Trait Implementations

impl Clone for FontDefinitions[src]

impl Debug for FontDefinitions[src]

impl Default for FontDefinitions[src]

impl PartialEq<FontDefinitions> for FontDefinitions[src]

impl StructuralPartialEq for FontDefinitions[src]

Auto Trait Implementations

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.