[][src]Struct yeslogic_ucd_parse::ArabicShaping

pub struct ArabicShaping {
    pub codepoint: Codepoint,
    pub schematic_name: String,
    pub joining_type: JoiningType,
    pub joining_group: JoiningGroup,
}

Represents a single row in the ArabicShaping.txt file.

The field names were taken from the header of ArabicShaping.txt.

Fields

codepoint: Codepoint

The codepoint corresponding to this row.

schematic_name: String

A short schematic name for the codepoint.

The schematic name is descriptive of the shape, based as consistently as possible on a name for the skeleton and then the diacritic marks applied to the skeleton, if any. Note that this schematic name is considered a comment, and does not constitute a formal property value.

joining_type: JoiningType

The "joining type" of this codepoint.

joining_group: JoiningGroup

The "joining group" of this codepoint.

Trait Implementations

impl Clone for ArabicShaping[src]

impl Debug for ArabicShaping[src]

impl Default for ArabicShaping[src]

impl Eq for ArabicShaping[src]

impl FromStr for ArabicShaping[src]

type Err = Error

The associated error which can be returned from parsing.

impl PartialEq<ArabicShaping> for ArabicShaping[src]

impl StructuralEq for ArabicShaping[src]

impl StructuralPartialEq for ArabicShaping[src]

impl UcdFile for ArabicShaping[src]

impl UcdFileByCodepoint for ArabicShaping[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.