[][src]Struct ucd_parse::PropertyAlias

pub struct PropertyAlias {
    pub abbreviation: String,
    pub long: String,
    pub aliases: Vec<String>,
}

A single row in the PropertyAliases.txt file.

Fields

abbreviation: String

An abbreviation for this property.

long: String

The "long" name of this property.

aliases: Vec<String>

Additional aliases (if present).

Trait Implementations

impl Clone for PropertyAlias[src]

impl Debug for PropertyAlias[src]

impl Default for PropertyAlias[src]

impl Eq for PropertyAlias[src]

impl FromStr for PropertyAlias[src]

type Err = Error

The associated error which can be returned from parsing.

impl PartialEq<PropertyAlias> for PropertyAlias[src]

impl StructuralEq for PropertyAlias[src]

impl StructuralPartialEq for PropertyAlias[src]

impl UcdFile for PropertyAlias[src]

Auto Trait Implementations

Blanket Implementations

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

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

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

impl<T> From<T> for T[src]

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

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

type Owned = T

The resulting type after obtaining ownership.

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

type Error = Infallible

The type returned in the event of a conversion error.

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

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

The type returned in the event of a conversion error.