[][src]Struct ucd_parse::PropertyValueAlias

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

property: String

The property name for which this value alias applies.

numeric: Option<u8>

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

abbreviation: String

An abbreviation for this property value.

long: String

The "long" form of this property value.

aliases: Vec<String>

Additional value aliases (if present).

Trait Implementations

impl UcdFile for PropertyValueAlias
[src]

fn file_path<P: AsRef<Path>>(ucd_dir: P) -> PathBuf
[src]

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

fn from_dir<P: AsRef<Path>>(
    ucd_dir: P
) -> Result<UcdLineParser<File, Self>, Error>
[src]

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

impl Eq for PropertyValueAlias
[src]

impl Default for PropertyValueAlias
[src]

impl PartialEq<PropertyValueAlias> for PropertyValueAlias
[src]

impl Clone for PropertyValueAlias
[src]

fn clone_from(&mut self, source: &Self)
1.0.0
[src]

Performs copy-assignment from source. Read more

impl Debug for PropertyValueAlias
[src]

impl FromStr for PropertyValueAlias
[src]

type Err = Error

The associated error which can be returned from parsing.

Auto Trait Implementations

Blanket Implementations

impl<T> From for T
[src]

impl<T, U> Into for T where
    U: From<T>, 
[src]

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

impl<T, U> TryFrom for T where
    T: From<U>, 
[src]

type Error = !

🔬 This is a nightly-only experimental API. (try_from)

The type returned in the event of a conversion error.

impl<T> Borrow for T where
    T: ?Sized
[src]

impl<T> BorrowMut for T where
    T: ?Sized
[src]

impl<T, U> TryInto for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

🔬 This is a nightly-only experimental API. (try_from)

The type returned in the event of a conversion error.

impl<T> Any for T where
    T: 'static + ?Sized
[src]