Struct font_kit::sources::mem::MemSource[][src]

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

A source that keeps fonts in memory.

Implementations

Creates a new empty memory source.

Creates a new memory source that contains the given set of font handles.

The fonts referenced by the handles are eagerly loaded into memory.

Add an existing font handle to a MemSource.

Returns the font that was just added.

Note that adding fonts to an existing MemSource is slower than creating a new one from a Handle iterator, since this method sorts after every addition, rather than once at the end.

Add a number of existing font handles to a MemSource.

Note that adding fonts to an existing MemSource is slower than creating a new one from a Handle iterator, because extra unnecessary sorting with occur with every call to this method.

Returns paths of all fonts installed on the system.

Returns the names of all families installed on the system.

Looks up a font family by name and returns the handles of all the fonts in that family.

FIXME(pcwalton): Case-insensitive comparison.

Selects a font by PostScript name, which should be a unique identifier.

The default implementation, which is used by the DirectWrite and the filesystem backends, does a brute-force search of installed fonts to find the one that matches.

Performs font matching according to the CSS Fonts Level 3 specification and returns the handle.

Trait Implementations

Returns paths of all fonts installed on the system.

Returns the names of all families installed on the system.

Looks up a font family by name and returns the handles of all the fonts in that family.

Selects a font by PostScript name, which should be a unique identifier. Read more

Accesses this Source as Any, which allows downcasting back to a concrete type from a trait object. Read more

Accesses this Source as Any, which allows downcasting back to a concrete type from a trait object. Read more

Performs font matching according to the CSS Fonts Level 3 specification and returns the handle. 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 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.