Skip to main content

GeneralCategory

Enum GeneralCategory 

Source
#[repr(u8)]
pub enum GeneralCategory {
Show 30 variants Unassigned = 0, UppercaseLetter = 1, LowercaseLetter = 2, TitlecaseLetter = 3, ModifierLetter = 4, OtherLetter = 5, NonspacingMark = 6, EnclosingMark = 7, SpacingMark = 8, DecimalNumber = 9, LetterNumber = 10, OtherNumber = 11, SpaceSeparator = 12, LineSeparator = 13, ParagraphSeparator = 14, Control = 15, Format = 16, PrivateUse = 17, Surrogate = 18, DashPunctuation = 19, OpenPunctuation = 20, ClosePunctuation = 21, ConnectorPunctuation = 22, OtherPunctuation = 23, MathSymbol = 24, CurrencySymbol = 25, ModifierSymbol = 26, OtherSymbol = 27, InitialPunctuation = 28, FinalPunctuation = 29,
}
Expand description

Enumerated property General_Category.

General_Category specifies the most general classification of a code point, usually determined based on the primary characteristic of the assigned character. For example, is the character a letter, a mark, a number, punctuation, or a symbol, and if so, of what type?

GeneralCategory only supports specific subcategories (eg UppercaseLetter). It does not support grouped categories (eg Letter). For grouped categories, use GeneralCategoryGroup.

§Example

use icu::properties::{CodePointMapData, props::GeneralCategory};

assert_eq!(
    CodePointMapData::<GeneralCategory>::new().get('木'),
    GeneralCategory::OtherLetter
); // U+6728
assert_eq!(
    CodePointMapData::<GeneralCategory>::new().get('🎃'),
    GeneralCategory::OtherSymbol
); // U+1F383 JACK-O-LANTERN

Variants§

§

Unassigned = 0

§

UppercaseLetter = 1

§

LowercaseLetter = 2

§

TitlecaseLetter = 3

§

ModifierLetter = 4

§

OtherLetter = 5

§

NonspacingMark = 6

§

EnclosingMark = 7

§

SpacingMark = 8

§

DecimalNumber = 9

§

LetterNumber = 10

§

OtherNumber = 11

§

SpaceSeparator = 12

§

LineSeparator = 13

§

ParagraphSeparator = 14

§

Control = 15

§

Format = 16

§

PrivateUse = 17

§

Surrogate = 18

§

DashPunctuation = 19

§

OpenPunctuation = 20

§

ClosePunctuation = 21

§

ConnectorPunctuation = 22

§

OtherPunctuation = 23

§

MathSymbol = 24

§

CurrencySymbol = 25

§

ModifierSymbol = 26

§

OtherSymbol = 27

§

InitialPunctuation = 28

§

FinalPunctuation = 29

Implementations§

Source§

impl GeneralCategory

Source

pub const Cn: Self = Self::Unassigned

Source

pub const Lu: Self = Self::UppercaseLetter

Source

pub const Ll: Self = Self::LowercaseLetter

Source

pub const Lt: Self = Self::TitlecaseLetter

Source

pub const Lm: Self = Self::ModifierLetter

Source

pub const Lo: Self = Self::OtherLetter

Source

pub const Mn: Self = Self::NonspacingMark

Source

pub const Me: Self = Self::EnclosingMark

Source

pub const Mc: Self = Self::SpacingMark

Source

pub const Nd: Self = Self::DecimalNumber

Source

pub const Digit: Self = Self::DecimalNumber

Source

pub const Nl: Self = Self::LetterNumber

Source

pub const No: Self = Self::OtherNumber

Source

pub const Zs: Self = Self::SpaceSeparator

Source

pub const Zl: Self = Self::LineSeparator

Source

pub const Zp: Self = Self::ParagraphSeparator

Source

pub const Cc: Self = Self::Control

Source

pub const Cntrl: Self = Self::Control

Source

pub const Cf: Self = Self::Format

Source

pub const Co: Self = Self::PrivateUse

Source

pub const Cs: Self = Self::Surrogate

Source

pub const Pd: Self = Self::DashPunctuation

Source

pub const Ps: Self = Self::OpenPunctuation

Source

pub const Pe: Self = Self::ClosePunctuation

Source

pub const Pc: Self = Self::ConnectorPunctuation

Source

pub const Po: Self = Self::OtherPunctuation

Source

pub const Sm: Self = Self::MathSymbol

Source

pub const Sc: Self = Self::CurrencySymbol

Source

pub const Sk: Self = Self::ModifierSymbol

Source

pub const So: Self = Self::OtherSymbol

Source

pub const Pi: Self = Self::InitialPunctuation

Source

pub const Pf: Self = Self::FinalPunctuation

Source§

impl GeneralCategory

Source

pub const ALL_VALUES: &'static [Self]

👎Deprecated

Deprecated

Trait Implementations§

Source§

impl AsULE for GeneralCategory

Source§

type ULE = GeneralCategoryULE

The ULE type corresponding to Self. Read more
Source§

fn to_unaligned(self) -> Self::ULE

Converts from Self to Self::ULE. Read more
Source§

fn from_unaligned(other: Self::ULE) -> Self

Converts from Self::ULE to Self. Read more
Source§

impl Clone for GeneralCategory

Source§

fn clone(&self) -> GeneralCategory

Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§

fn clone_from(&mut self, source: &Self)

Performs copy-assignment from source. Read more
Source§

impl Copy for GeneralCategory

Source§

impl Debug for GeneralCategory

Source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
Source§

impl Default for GeneralCategory

Source§

fn default() -> Self

Returns the “default value” for a type. Read more
Source§

impl EnumeratedProperty for GeneralCategory

Source§

const NAME: &'static [u8]

The name of this property
Source§

const SHORT_NAME: &'static [u8]

The abbreviated name of this property, if it exists, otherwise the name
Source§

fn for_char(ch: char) -> Self

Convenience method for CodePointMapData::new().get(ch) Read more
Source§

impl Eq for GeneralCategory

Source§

impl From<GeneralCategory> for u16

Source§

fn from(other: GeneralCategory) -> Self

Converts to this type from the input type.
Source§

impl From<GeneralCategory> for GeneralCategoryGroup

Source§

fn from(subcategory: GeneralCategory) -> Self

Converts to this type from the input type.
Source§

impl Hash for GeneralCategory

Source§

fn hash<__H: Hasher>(&self, state: &mut __H)

Feeds this value into the given Hasher. Read more
1.3.0 · Source§

fn hash_slice<H>(data: &[Self], state: &mut H)
where H: Hasher, Self: Sized,

Feeds a slice of this type into the given Hasher. Read more
Source§

impl NamedEnumeratedProperty for GeneralCategory

Source§

fn try_from_str(s: &str) -> Option<Self>

Convenience method for PropertyParser::new().get_loose(s) Read more
Source§

fn long_name(&self) -> &'static str

Convenience method for PropertyNamesLong::new().get(*self).unwrap() Read more
Source§

fn short_name(&self) -> &'static str

Convenience method for PropertyNamesShort::new().get(*self).unwrap() Read more
Source§

impl Ord for GeneralCategory

Source§

fn cmp(&self, other: &GeneralCategory) -> Ordering

This method returns an Ordering between self and other. Read more
1.21.0 (const: unstable) · Source§

fn max(self, other: Self) -> Self
where Self: Sized,

Compares and returns the maximum of two values. Read more
1.21.0 (const: unstable) · Source§

fn min(self, other: Self) -> Self
where Self: Sized,

Compares and returns the minimum of two values. Read more
1.50.0 (const: unstable) · Source§

fn clamp(self, min: Self, max: Self) -> Self
where Self: Sized,

Restrict a value to a certain interval. Read more
Source§

impl ParseableEnumeratedProperty for GeneralCategory

Source§

impl PartialEq for GeneralCategory

Source§

fn eq(&self, other: &GeneralCategory) -> bool

Equality operator ==. Read more
1.0.0 (const: unstable) · Source§

fn ne(&self, other: &Rhs) -> bool

Inequality operator !=. Read more
Source§

impl PartialOrd for GeneralCategory

Source§

fn partial_cmp(&self, other: &GeneralCategory) -> Option<Ordering>

This method returns an ordering between self and other values if one exists. Read more
1.0.0 (const: unstable) · Source§

fn lt(&self, other: &Rhs) -> bool

Tests less than (for self and other) and is used by the < operator. Read more
1.0.0 (const: unstable) · Source§

fn le(&self, other: &Rhs) -> bool

Tests less than or equal to (for self and other) and is used by the <= operator. Read more
1.0.0 (const: unstable) · Source§

fn gt(&self, other: &Rhs) -> bool

Tests greater than (for self and other) and is used by the > operator. Read more
1.0.0 (const: unstable) · Source§

fn ge(&self, other: &Rhs) -> bool

Tests greater than or equal to (for self and other) and is used by the >= operator. Read more
Source§

impl StructuralPartialEq for GeneralCategory

Source§

impl TrieValue for GeneralCategory

Source§

type TryFromU32Error = &'static str

Last-resort fallback value to return if we cannot read data from the trie. Read more
Source§

fn try_from_u32(i: u32) -> Result<Self, Self::TryFromU32Error>

A parsing function that is primarily motivated by deserialization contexts. When the serialization type width is smaller than 32 bits, then it is expected that the call site will widen the value to a u32 first.
Source§

fn to_u32(self) -> u32

A method for converting back to a u32 that can roundtrip through Self::try_from_u32(). The default implementation of this trait method panics in debug mode and returns 0 in release mode. Read more
Source§

impl TryFrom<u8> for GeneralCategory

Source§

fn try_from(val: u8) -> Result<Self, GeneralCategoryOutOfBoundsError>

Construct this GeneralCategory from an integer, returning an error if it is out of bounds

Source§

type Error = GeneralCategoryOutOfBoundsError

The type returned in the event of a conversion error.

Auto Trait Implementations§

Blanket Implementations§

Source§

impl<T> Any for T
where T: 'static + ?Sized,

Source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
Source§

impl<T> Borrow<T> for T
where T: ?Sized,

Source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
Source§

impl<T> BorrowMut<T> for T
where T: ?Sized,

Source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
Source§

impl<T> CloneToUninit for T
where T: Clone,

Source§

unsafe fn clone_to_uninit(&self, dest: *mut u8)

🔬This is a nightly-only experimental API. (clone_to_uninit)
Performs copy-assignment from self to dest. Read more
Source§

impl<T> From<T> for T

Source§

fn from(t: T) -> T

Returns the argument unchanged.

Source§

impl<T, U> Into<U> for T
where U: From<T>,

Source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

Source§

impl<T> ToOwned for T
where T: Clone,

Source§

type Owned = T

The resulting type after obtaining ownership.
Source§

fn to_owned(&self) -> T

Creates owned data from borrowed data, usually by cloning. Read more
Source§

fn clone_into(&self, target: &mut T)

Uses borrowed data to replace owned data, usually by cloning. Read more
Source§

impl<T, U> TryFrom<U> for T
where U: Into<T>,

Source§

type Error = Infallible

The type returned in the event of a conversion error.
Source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
Source§

impl<T, U> TryInto<U> for T
where U: TryFrom<T>,

Source§

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

The type returned in the event of a conversion error.
Source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.