[][src]Struct genpdf::fonts::Font

pub struct Font { /* fields omitted */ }

A reference to a font cached by a FontCache.

See the module documentation for details on the internals.

Implementations

impl Font[src]

pub fn get_line_height(&self, font_size: u8) -> Mm[src]

Returns the line height for text with this font and the given font size.

pub fn glyph_height(&self, font_size: u8) -> Mm[src]

Returns the glyph height for text with this font and the given font size.

pub fn char_width(&self, font_cache: &FontCache, c: char, font_size: u8) -> Mm[src]

Returns the width of a character with this font and the given font size.

The given FontCache must be the font cache that loaded this font.

pub fn str_width(&self, font_cache: &FontCache, s: &str, font_size: u8) -> Mm[src]

Returns the width of a string with this font and the given font size.

The given FontCache must be the font cache that loaded this font.

Trait Implementations

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.