Struct intl_pluralrules::operands::PluralOperands [−][src]
pub struct PluralOperands {
pub n: f64,
pub i: u64,
pub v: usize,
pub w: usize,
pub f: u64,
pub t: u64,
}
Expand description
A full plural operands representation of a number. See CLDR Plural Rules for complete operands description.
Fields
n: f64
Absolute value of input
i: u64
Integer value of input
v: usize
Number of visible fraction digits with trailing zeros
w: usize
Number of visible fraction digits without trailing zeros
f: u64
Visible fraction digits with trailing zeros
t: u64
Visible fraction digits without trailing zeros
Trait Implementations
This method tests for self
and other
values to be equal, and is used
by ==
. Read more
This method tests for !=
.