[][src]Struct ucd_parse::EmojiProperty

pub struct EmojiProperty {
    pub codepoints: Codepoints,
    pub property: String,
}

A single row in the emoji-data.txt file.

The emoji-data.txt file is the source of truth on several Emoji-related Unicode properties.

Note that emoji-data.txt is not formally part of the Unicode Character Database. You can download the Emoji data files separately here: https://unicode.org/Public/emoji/

Fields

codepoints: Codepoints

The codepoint or codepoint range for this entry.

property: String

The property name assigned to the codepoints in this entry.

Trait Implementations

impl Clone for EmojiProperty[src]

impl Debug for EmojiProperty[src]

impl Default for EmojiProperty[src]

impl Eq for EmojiProperty[src]

impl FromStr for EmojiProperty[src]

type Err = Error

The associated error which can be returned from parsing.

impl PartialEq<EmojiProperty> for EmojiProperty[src]

impl StructuralEq for EmojiProperty[src]

impl StructuralPartialEq for EmojiProperty[src]

impl UcdFile for EmojiProperty[src]

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