pub enum PluralCategory {
    Zero,
    One,
    Two,
    Few,
    Many,
    Other,
}
Expand description

The plural categories are used to format messages with numeric placeholders, expressed as decimal numbers.

The fundamental rule for determining plural categories is the existence of minimal pairs: whenever two different numbers may require different versions of the same message, then the numbers have different plural categories.

All languages supported by ICU4X can match any number to one of the categories.

Examples

use icu::locid::locale;
use icu::plurals::{PluralCategory, PluralRuleType, PluralRules};

let pr = PluralRules::try_new_unstable(
    &icu_testdata::unstable(),
    &locale!("en").into(),
    PluralRuleType::Cardinal,
)
.expect("Failed to construct a PluralRules struct.");

assert_eq!(pr.category_for(5_usize), PluralCategory::Other);

Variants§

§

Zero

CLDR “zero” plural category. Used in Arabic and Latvian, among others.

Examples of numbers having this category:

  • 0 in Arabic (ar), Latvian (lv)
  • 10~20, 30, 40, 50, … in Latvian (lv)
§

One

CLDR “one” plural category. Signifies the singular form in many languages.

Examples of numbers having this category:

  • 0 in French (fr), Portuguese (pt), …
  • 1 in English (en) and most other languages
  • 2.1 in Filipino (fil), Croatian (hr), Latvian (lv), Serbian (sr)
  • 2, 3, 5, 7, 8, … in Filipino (fil)
§

Two

CLDR “two” plural category. Used in Arabic, Hebrew, and Slovenian, among others.

Examples of numbers having this category:

  • 2 in Arabic (ar), Hebrew (iw), Slovenian (sl)
  • 2.0 in Arabic (ar)
§

Few

CLDR “few” plural category. Used in Romanian, Polish, Russian, and others.

Examples of numbers having this category:

  • 0 in Romanian (ro)
  • 1.2 in Croatian (hr), Romanian (ro), Slovenian (sl), Serbian (sr)
  • 2 in Polish (pl), Russian (ru), Czech (cs), …
  • 5 in Arabic (ar), Lithuanian (lt), Romanian (ro)
§

Many

CLDR “many” plural category. Used in Polish, Russian, Ukrainian, and others.

Examples of numbers having this category:

  • 0 in Polish (pl)
  • 1.0 in Czech (cs), Slovak (sk)
  • 1.1 in Czech (cs), Lithuanian (lt), Slovak (sk)
  • 15 in Arabic (ar), Polish (pl), Russian (ru), Ukrainian (uk)
§

Other

CLDR “other” plural category, used as a catch-all. Each language supports it, and it is also used as a fail safe result for in case no better match can be identified.

In some languages, such as Japanese, Chinese, Korean, and Thai, this is the only plural category.

Examples of numbers having this category:

  • 0 in English (en), German (de), Spanish (es), …
  • 1 in Japanese (ja), Korean (ko), Chinese (zh), Thai (th), …
  • 2 in English (en), German (de), Spanish (es), …

Implementations§

source§

impl PluralCategory

source

pub fn all() -> impl ExactSizeIterator

Returns an ordered iterator over variants of Plural Categories.

Categories are returned in alphabetical order.

Examples
use icu::plurals::PluralCategory;

let mut categories = PluralCategory::all();

assert_eq!(categories.next(), Some(PluralCategory::Few));
assert_eq!(categories.next(), Some(PluralCategory::Many));
assert_eq!(categories.next(), Some(PluralCategory::One));
assert_eq!(categories.next(), Some(PluralCategory::Other));
assert_eq!(categories.next(), Some(PluralCategory::Two));
assert_eq!(categories.next(), Some(PluralCategory::Zero));
assert_eq!(categories.next(), None);
source

pub fn get_for_cldr_string(category: &str) -> Option<PluralCategory>

Returns the PluralCategory corresponding to given TR35 string.

source

pub fn get_for_cldr_bytes(category: &[u8]) -> Option<PluralCategory>

Returns the PluralCategory corresponding to given TR35 string as bytes

Trait Implementations§

source§

impl Clone for PluralCategory

source§

fn clone(&self) -> PluralCategory

Returns a copy of the value. Read more
1.0.0 · source§

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

Performs copy-assignment from source. Read more
source§

impl Debug for PluralCategory

source§

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

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

impl<'de> Deserialize<'de> for PluralCategory

source§

fn deserialize<__D>( __deserializer: __D ) -> Result<PluralCategory, <__D as Deserializer<'de>>::Error>where __D: Deserializer<'de>,

Deserialize this value from the given Serde deserializer. Read more
source§

impl From<PluralCategory> for Count

source§

fn from(other: PluralCategory) -> Count

Converts to this type from the input type.
source§

impl Hash for PluralCategory

source§

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

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 Ord for PluralCategory

source§

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

This method returns an Ordering between self and other. Read more
1.21.0 · source§

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

Compares and returns the maximum of two values. Read more
1.21.0 · source§

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

Compares and returns the minimum of two values. Read more
1.50.0 · source§

fn clamp(self, min: Self, max: Self) -> Selfwhere Self: Sized + PartialOrd<Self>,

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

impl PartialEq<PluralCategory> for PluralCategory

source§

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

This method tests for self and other values to be equal, and is used by ==.
1.0.0 · source§

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

This method tests for !=. The default implementation is almost always sufficient, and should not be overridden without very good reason.
source§

impl PartialOrd<PluralCategory> for PluralCategory

source§

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

This method returns an ordering between self and other values if one exists. Read more
1.0.0 · source§

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

This method tests less than (for self and other) and is used by the < operator. Read more
1.0.0 · source§

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

This method tests less than or equal to (for self and other) and is used by the <= operator. Read more
1.0.0 · source§

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

This method tests greater than (for self and other) and is used by the > operator. Read more
1.0.0 · source§

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

This method tests greater than or equal to (for self and other) and is used by the >= operator. Read more
source§

impl Copy for PluralCategory

source§

impl Eq for PluralCategory

source§

impl StructuralEq for PluralCategory

source§

impl StructuralPartialEq for PluralCategory

Auto Trait Implementations§

Blanket Implementations§

source§

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

source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
source§

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

const: unstable · source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
source§

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

const: unstable · source§

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

Mutably borrows from an owned value. Read more
source§

impl<T> From<T> for T

const: unstable · source§

fn from(t: T) -> T

Returns the argument unchanged.

source§

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

const: unstable · 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 Twhere T: Clone,

§

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 Twhere U: Into<T>,

§

type Error = Infallible

The type returned in the event of a conversion error.
const: unstable · source§

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

Performs the conversion.
source§

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

§

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

The type returned in the event of a conversion error.
const: unstable · source§

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

Performs the conversion.
source§

impl<T> DeserializeOwned for Twhere T: for<'de> Deserialize<'de>,

§

impl<T> ErasedDestructor for Twhere T: 'static,

source§

impl<T> MaybeSendSync for T