[][src]Struct bookbinder_common::fonts::FontInfo

pub struct FontInfo { /* fields omitted */ }

Bundled information about a font family, containing references to file paths and to font data

Implementations

impl FontInfo[src]

pub fn get_base_filepath(&self) -> Result<&Path, Error>[src]

Get the base directory of this font family; that is, the directory within which each filename is a file. E.g. if the result of get_base_file_path is ~/Fonts, and of get_bold is bold.otf, then the bold font can be found at ~/Fonts/bold.otf.

pub fn get_filename(&self) -> Result<&'static str, Error>[src]

Filename of the regular font

pub fn get_bold(&self) -> Result<&'static str, Error>[src]

Filename of the bold font

pub fn get_italic(&self) -> Result<&'static str, Error>[src]

Filename of the italic font

pub fn get_bolditalic(&self) -> Result<&'static str, Error>[src]

Filename of the bold italic font

Trait Implementations

impl Debug for FontInfo[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> Pointable for T

type Init = T

The type for initializers.

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.

impl<V, T> VZip<V> for T where
    V: MultiLane<T>,