Struct font_kit::sources::multi::MultiSource [−][src]
pub struct MultiSource { /* fields omitted */ }
Expand description
A source that encapsulates multiple sources and allows them to be queried as a group.
This is useful when an application wants a library of fonts consisting of the installed system fonts plus some other application-supplied fonts.
Implementations
Creates a new source that contains all the fonts in the supplied sources.
Returns paths of all fonts installed on the system.
Returns the names of all families installed on the system.
pub fn select_family_by_name(
&self,
family_name: &str
) -> Result<FamilyHandle, SelectionError>
[src]
pub fn select_family_by_name(
&self,
family_name: &str
) -> Result<FamilyHandle, SelectionError>
[src]Looks up a font family by name and returns the handles of all the fonts in that family.
pub fn select_by_postscript_name(
&self,
postscript_name: &str
) -> Result<Handle, SelectionError>
[src]
pub fn select_by_postscript_name(
&self,
postscript_name: &str
) -> Result<Handle, SelectionError>
[src]Selects a font by PostScript name, which should be a unique identifier.
pub fn select_best_match(
&self,
family_names: &[FamilyName],
properties: &Properties
) -> Result<Handle, SelectionError>
[src]
pub fn select_best_match(
&self,
family_names: &[FamilyName],
properties: &Properties
) -> Result<Handle, SelectionError>
[src]Performs font matching according to the CSS Fonts Level 3 specification and returns the handle.
Returns an iterator over the contained sources.
pub fn iter_mut<'a>(&'a mut self) -> MultiIterMut<'a>ⓘNotable traits for MultiIterMut<'a>
impl<'a> Iterator for MultiIterMut<'a> type Item = &'a mut dyn Source;
[src]
pub fn iter_mut<'a>(&'a mut self) -> MultiIterMut<'a>ⓘNotable traits for MultiIterMut<'a>
impl<'a> Iterator for MultiIterMut<'a> type Item = &'a mut dyn Source;
[src]Returns an iterator over the contained sources with mutable access.
A convenience method to get the first source with the given type.
Returns None
if no source of the given type was found.
A convenience method to get the first source with the given type.
Returns None
if no source of the given type was found.
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
fn select_best_match(
&self,
family_names: &[FamilyName],
properties: &Properties
) -> Result<Handle, SelectionError>
[src]
fn select_best_match(
&self,
family_names: &[FamilyName],
properties: &Properties
) -> Result<Handle, SelectionError>
[src]Performs font matching according to the CSS Fonts Level 3 specification and returns the handle. Read more
Auto Trait Implementations
impl !RefUnwindSafe for MultiSource
impl !Send for MultiSource
impl !Sync for MultiSource
impl Unpin for MultiSource
impl !UnwindSafe for MultiSource