windows::Globalization::NumberFormatting

Trait INumberFormatterOptions_Impl

pub trait INumberFormatterOptions_Impl: IUnknownImpl {
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§

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>

Dyn Compatibility§

This trait is not dyn compatible.

In older versions of Rust, dyn compatibility was called "object safety", so this trait is not object safe.

Implementors§