Enum ucd_parse::NameAliasLabel [] [src]

pub enum NameAliasLabel {
    Correction,
    Control,
    Alternate,
    Figment,
    Abbreviation,
}

The label of a name alias.

Variants

Corrections for serious problems in a character name.

ISO 6429 names for C0 and C1 control functions and other commonly occurring names for control codes.

A few widely used alternate names for format characters.

Several documented labels for C1 control code points which were never actually approved in any standard.

Commonly occurring abbreviations (or acronyms) for control codes, format characters, spaces and variation selectors.

Trait Implementations

impl Clone for NameAliasLabel
[src]

[src]

Returns a copy of the value. Read more

1.0.0
[src]

Performs copy-assignment from source. Read more

impl Copy for NameAliasLabel
[src]

impl Debug for NameAliasLabel
[src]

[src]

Formats the value using the given formatter. Read more

impl Eq for NameAliasLabel
[src]

impl PartialEq for NameAliasLabel
[src]

[src]

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

1.0.0
[src]

This method tests for !=.

impl Default for NameAliasLabel
[src]

[src]

Returns the "default value" for a type. Read more

impl FromStr for NameAliasLabel
[src]

The associated error which can be returned from parsing.

[src]

Parses a string s to return a value of this type. Read more

Auto Trait Implementations