[−][src]Struct intl_pluralrules::operands::PluralOperands
A full plural operands representation of a number. See CLDR Plural Rules for complete operands description.
Fields
n: f64
Absolute value of input
i: usize
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: usize
Visible fraction digits with trailing zeros
t: usize
Visible fraction digits without trailing zeros
Trait Implementations
impl Debug for PluralOperands
[src]
impl From<u16> for PluralOperands
[src]
impl From<u32> for PluralOperands
[src]
impl From<u64> for PluralOperands
[src]
impl From<u8> for PluralOperands
[src]
impl From<usize> for PluralOperands
[src]
impl PartialEq<PluralOperands> for PluralOperands
[src]
fn eq(&self, other: &PluralOperands) -> bool
[src]
fn ne(&self, other: &PluralOperands) -> bool
[src]
impl StructuralPartialEq for PluralOperands
[src]
impl<'a> TryFrom<&'a str> for PluralOperands
[src]
type Error = &'static str
The type returned in the event of a conversion error.
fn try_from(input: &'a str) -> Result<Self, Self::Error>
[src]
impl TryFrom<String> for PluralOperands
[src]
type Error = &'static str
The type returned in the event of a conversion error.
fn try_from(input: String) -> Result<Self, Self::Error>
[src]
impl TryFrom<f32> for PluralOperands
[src]
type Error = &'static str
The type returned in the event of a conversion error.
fn try_from(input: f32) -> Result<Self, Self::Error>
[src]
impl TryFrom<f64> for PluralOperands
[src]
type Error = &'static str
The type returned in the event of a conversion error.
fn try_from(input: f64) -> Result<Self, Self::Error>
[src]
impl TryFrom<i16> for PluralOperands
[src]
type Error = &'static str
The type returned in the event of a conversion error.
fn try_from(input: i16) -> Result<Self, Self::Error>
[src]
impl TryFrom<i32> for PluralOperands
[src]
type Error = &'static str
The type returned in the event of a conversion error.
fn try_from(input: i32) -> Result<Self, Self::Error>
[src]
impl TryFrom<i64> for PluralOperands
[src]
type Error = &'static str
The type returned in the event of a conversion error.
fn try_from(input: i64) -> Result<Self, Self::Error>
[src]
impl TryFrom<i8> for PluralOperands
[src]
type Error = &'static str
The type returned in the event of a conversion error.
fn try_from(input: i8) -> Result<Self, Self::Error>
[src]
impl TryFrom<isize> for PluralOperands
[src]
Auto Trait Implementations
impl RefUnwindSafe for PluralOperands
impl Send for PluralOperands
impl Sync for PluralOperands
impl Unpin for PluralOperands
impl UnwindSafe for PluralOperands
Blanket Implementations
impl<T> Any for T where
T: 'static + ?Sized,
[src]
T: 'static + ?Sized,
impl<T> Borrow<T> for T where
T: ?Sized,
[src]
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
[src]
T: ?Sized,
fn borrow_mut(&mut self) -> &mut T
[src]
impl<T> From<T> for T
[src]
impl<T, U> Into<U> for T where
U: From<T>,
[src]
U: From<T>,
impl<T, U> TryFrom<U> for T where
U: Into<T>,
[src]
U: Into<T>,
type Error = Infallible
The type returned in the event of a conversion error.
fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>
[src]
impl<T, U> TryInto<U> for T where
U: TryFrom<T>,
[src]
U: TryFrom<T>,