pub enum PluralCategory {
Zero,
One,
Two,
Few,
Many,
Other,
}Expand description
CLDR plural category.
Variants§
Trait Implementations§
Source§impl Clone for PluralCategory
impl Clone for PluralCategory
Source§fn clone(&self) -> PluralCategory
fn clone(&self) -> PluralCategory
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreimpl Copy for PluralCategory
Source§impl Debug for PluralCategory
impl Debug for PluralCategory
impl Eq for PluralCategory
Source§impl Hash for PluralCategory
impl Hash for PluralCategory
Source§impl PartialEq for PluralCategory
impl PartialEq for PluralCategory
Source§fn eq(&self, other: &PluralCategory) -> bool
fn eq(&self, other: &PluralCategory) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for PluralCategory
Auto Trait Implementations§
impl Freeze for PluralCategory
impl RefUnwindSafe for PluralCategory
impl Send for PluralCategory
impl Sync for PluralCategory
impl Unpin for PluralCategory
impl UnsafeUnpin for PluralCategory
impl UnwindSafe for PluralCategory
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more