Struct ucd_parse::PropertyValueAlias [] [src]

pub struct PropertyValueAlias {
    pub property: String,
    pub numeric: Option<u8>,
    pub abbreviation: String,
    pub long: String,
    pub aliases: Vec<String>,
}

A single row in the PropertyValueAliases.txt file.

Fields

The property name for which this value alias applies.

A numeric abbreviation for this property value, if present. (This is seemingly only present for the ccc/Canonical_Combining_Class property.)

An abbreviation for this property value.

The "long" form of this property value.

Additional value aliases (if present).

Trait Implementations

impl Clone for PropertyValueAlias
[src]

[src]

Returns a copy of the value. Read more

1.0.0
[src]

Performs copy-assignment from source. Read more

impl Debug for PropertyValueAlias
[src]

[src]

Formats the value using the given formatter. Read more

impl Default for PropertyValueAlias
[src]

[src]

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

impl Eq for PropertyValueAlias
[src]

impl PartialEq for PropertyValueAlias
[src]

[src]

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

[src]

This method tests for !=.

impl UcdFile for PropertyValueAlias
[src]

[src]

The file path corresponding to this file, relative to the UCD directory. Read more

[src]

The full file path corresponding to this file given the UCD directory path. Read more

[src]

Create an iterator over each record in this UCD file. Read more

impl FromStr for PropertyValueAlias
[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