[][src]Struct ucd_parse::UnicodeData

pub struct UnicodeData {
    pub codepoint: Codepoint,
    pub name: String,
    pub general_category: String,
    pub canonical_combining_class: u8,
    pub bidi_class: String,
    pub decomposition: UnicodeDataDecomposition,
    pub numeric_type_decimal: Option<u8>,
    pub numeric_type_digit: Option<u8>,
    pub numeric_type_numeric: Option<UnicodeDataNumeric>,
    pub bidi_mirrored: bool,
    pub unicode1_name: String,
    pub iso_comment: String,
    pub simple_uppercase_mapping: Option<Codepoint>,
    pub simple_lowercase_mapping: Option<Codepoint>,
    pub simple_titlecase_mapping: Option<Codepoint>,
}

Represents a single row in the UnicodeData.txt file.

These fields were taken from UAX44, Table 9, as part of the documentation for the UnicodeData.txt file.

Fields

codepoint: Codepoint

The codepoint corresponding to this row.

name: String

The name of this codepoint.

general_category: String

The "general category" of this codepoint.

canonical_combining_class: u8

The class of this codepoint used in the Canonical Ordering Algorithm.

Note that some classes map to a particular symbol. See UAX44, Table 15.

bidi_class: String

The bidirectional class of this codepoint.

Possible values are listed in UAX44, Table 13.

decomposition: UnicodeDataDecomposition

The decomposition mapping for this codepoint. This includes its formatting tag (if present).

numeric_type_decimal: Option<u8>

A decimal numeric representation of this codepoint, if it has the property Numeric_Type=Decimal.

numeric_type_digit: Option<u8>

A decimal numeric representation of this codepoint, if it has the property Numeric_Type=Digit. Note that while this field is still populated for existing codepoints, no new codepoints will have this field populated.

numeric_type_numeric: Option<UnicodeDataNumeric>

A decimal or rational numeric representation of this codepoint, if it has the property Numeric_Type=Numeric.

bidi_mirrored: bool

A boolean indicating whether this codepoint is "mirrored" in bidirectional text.

unicode1_name: String

The "old" Unicode 1.0 or ISO 6429 name of this codepoint. Note that this field is empty unless it is significantly different from the name field.

iso_comment: String

The ISO 10464 comment field. This no longer contains any non-NULL values.

simple_uppercase_mapping: Option<Codepoint>

This codepoint's simple uppercase mapping, if it exists.

simple_lowercase_mapping: Option<Codepoint>

This codepoint's simple lowercase mapping, if it exists.

simple_titlecase_mapping: Option<Codepoint>

This codepoint's simple titlecase mapping, if it exists.

Methods

impl UnicodeData[src]

pub fn is_range_start(&self) -> bool[src]

Returns true if and only if this record corresponds to the start of a range.

pub fn is_range_end(&self) -> bool[src]

Returns true if and only if this record corresponds to the end of a range.

Trait Implementations

impl Clone for UnicodeData[src]

impl Debug for UnicodeData[src]

impl Default for UnicodeData[src]

impl Display for UnicodeData[src]

impl Eq for UnicodeData[src]

impl FromStr for UnicodeData[src]

type Err = Error

The associated error which can be returned from parsing.

impl PartialEq<UnicodeData> for UnicodeData[src]

impl StructuralEq for UnicodeData[src]

impl StructuralPartialEq for UnicodeData[src]

impl UcdFile for UnicodeData[src]

impl UcdFileByCodepoint for UnicodeData[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> ToString for T where
    T: Display + ?Sized
[src]

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.