pub enum PluralRuleType {
ORDINAL,
CARDINAL,
}
Expand description
A public enum for handling plural type.
Variants§
ORDINAL
Ordinal numbers express position or rank in a sequence. More about oridinal numbers
CARDINAL
Cardinal numbers are natural numbers. More about cardinal numbers
Trait Implementations§
Source§impl Clone for PluralRuleType
impl Clone for PluralRuleType
Source§fn clone(&self) -> PluralRuleType
fn clone(&self) -> PluralRuleType
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moreSource§impl Hash for PluralRuleType
impl Hash for PluralRuleType
Source§impl PartialEq for PluralRuleType
impl PartialEq for PluralRuleType
impl Copy for PluralRuleType
impl Eq for PluralRuleType
impl StructuralPartialEq for PluralRuleType
Auto Trait Implementations§
impl Freeze for PluralRuleType
impl RefUnwindSafe for PluralRuleType
impl Send for PluralRuleType
impl Sync for PluralRuleType
impl Unpin for PluralRuleType
impl UnwindSafe for PluralRuleType
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