Enum font_kit::error::SelectionError[][src]

pub enum SelectionError {
    NotFound,
    CannotAccessSource,
}

Reasons why a source might fail to look up a font or fonts.

Variants

No font matching the given query was found.

The source was inaccessible because of an I/O or similar error.

Trait Implementations

impl PartialEq for SelectionError
[src]

This method tests for self and other values to be equal, and is used by ==. Read more

This method tests for !=.

impl Debug for SelectionError
[src]

Formats the value using the given formatter. Read more

Auto Trait Implementations