[][src]Enum fltk::enums::Font

#[repr(i32)]pub enum Font {
    Helvetica,
    HelveticaBold,
    HelveticaItalic,
    HelveticaBoldItalic,
    Courier,
    CourierBold,
    CourierItalic,
    CourierBoldItalic,
    Times,
    TimesBold,
    TimesItalic,
    TimesBoldItalic,
    Symbol,
    Screen,
    ScreenBold,
    Zapfdingbats,
}

Defines fonts used by FLTK

Variants

Helvetica
HelveticaBold
HelveticaItalic
HelveticaBoldItalic
Courier
CourierBold
CourierItalic
CourierBoldItalic
Times
TimesBold
TimesItalic
TimesBoldItalic
Symbol
Screen
ScreenBold
Zapfdingbats

Implementations

impl Font[src]

pub fn by_index(idx: usize) -> Font[src]

Returns a font by index, can be queried via the app::get_font_names()

pub fn by_name(name: &str) -> Font[src]

Gets the font by its name, can be queried via the app::get_font_names()

Trait Implementations

impl BitOr<Font> for Font[src]

type Output = Font

The resulting type after applying the | operator.

impl Clone for Font[src]

impl Copy for Font[src]

impl Debug for Font[src]

impl PartialEq<Font> for Font[src]

impl StructuralPartialEq for Font[src]

Auto Trait Implementations

impl RefUnwindSafe for Font

impl Send for Font

impl Sync for Font

impl Unpin for Font

impl UnwindSafe for Font

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.