Struct tetra::graphics::text::VectorFontBuilder[][src]

pub struct VectorFontBuilder { /* fields omitted */ }
Expand description

A builder for vector-based fonts.

TrueType and OpenType fonts are supported. The font data will only be loaded into memory once, and it will be shared between all Fonts that are subsequently created by the builder instance.

Font::vector provides a simpler API for loading vector fonts, if you don’t need all of the functionality of this struct.

Performance

Creating a VectorFontBuilder is a relatively expensive operation. If you need to create extra sizes of the font later on, store the VectorFontBuilder rather than building a new one.

Cloning a VectorFontBuilder is a very cheap operation, as the underlying data is shared between the original instance and the clone via reference-counting.

Implementations

Loads a vector font from the given file.

Errors

Loads a vector font from a slice of binary data.

Errors

Creates a Font with the given size.

Errors

Trait Implementations

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

Formats the value using the given formatter. Read more

Auto Trait Implementations

Blanket Implementations

Gets the TypeId of self. Read more

Immutably borrows from an owned value. Read more

Mutably borrows from an owned value. Read more

Performs the conversion.

Performs the conversion.

The resulting type after obtaining ownership.

Creates owned data from borrowed data, usually by cloning. Read more

🔬 This is a nightly-only experimental API. (toowned_clone_into)

recently added

Uses borrowed data to replace owned data, usually by cloning. Read more

The type returned in the event of a conversion error.

Performs the conversion.

The type returned in the event of a conversion error.

Performs the conversion.