pub trait INumberFormatterOptions_Impl: Sized {
Show 14 methods // Required methods fn Languages(&self) -> Result<IVectorView<HSTRING>>; fn GeographicRegion(&self) -> Result<HSTRING>; fn IntegerDigits(&self) -> Result<i32>; fn SetIntegerDigits(&self, value: i32) -> Result<()>; fn FractionDigits(&self) -> Result<i32>; fn SetFractionDigits(&self, value: i32) -> Result<()>; fn IsGrouped(&self) -> Result<bool>; fn SetIsGrouped(&self, value: bool) -> Result<()>; fn IsDecimalPointAlwaysDisplayed(&self) -> Result<bool>; fn SetIsDecimalPointAlwaysDisplayed(&self, value: bool) -> Result<()>; fn NumeralSystem(&self) -> Result<HSTRING>; fn SetNumeralSystem(&self, value: &HSTRING) -> Result<()>; fn ResolvedLanguage(&self) -> Result<HSTRING>; fn ResolvedGeographicRegion(&self) -> Result<HSTRING>;
}

Required Methods§

Object Safety§

This trait is not object safe.

Implementors§