Enum harfbuzz_rs::TagFromStrErr[][src]

pub enum TagFromStrErr {
    NonAscii,
    ZeroLengthString,
}

An Error generated when a Tag fails to parse from a &str with the from_str function.

Variants

The string contains non-ASCII characters.

The string has length zero.

Trait Implementations

impl Debug for TagFromStrErr
[src]

Formats the value using the given formatter. Read more

impl Copy for TagFromStrErr
[src]

impl Clone for TagFromStrErr
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl PartialEq for TagFromStrErr
[src]

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

This method tests for !=.

impl Eq for TagFromStrErr
[src]

Auto Trait Implementations