[][src]Struct printpdf::types::plugins::graphics::two_dimensional::font::FontList

pub struct FontList { /* fields omitted */ }

Font list for tracking fonts within a single PDF document

Implementations

impl FontList[src]

pub fn new() -> Self[src]

Creates a new FontList

pub fn add_font(
    &mut self,
    font_ref: IndirectFontRef,
    font: DirectFontRef
) -> IndirectFontRef
[src]

Adds a font to the FontList

pub fn get_font(&self, font: &IndirectFontRef) -> Option<DirectFontRef>[src]

Turns an indirect font reference into a direct one (Warning): clones the direct font reference

pub fn len(&self) -> usize[src]

Returns the number of fonts currenly in use

pub fn is_empty(&self) -> bool[src]

Returns if the font list is empty

Trait Implementations

impl Clone for FontList[src]

impl Debug for FontList[src]

impl Default for FontList[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.