Trait INumberFormatter2_Impl
pub trait INumberFormatter2_Impl: IUnknownImpl {
// Required methods
fn FormatInt(&self, value: i64) -> Result<HSTRING>;
fn FormatUInt(&self, value: u64) -> Result<HSTRING>;
fn FormatDouble(&self, value: f64) -> Result<HSTRING>;
}
Required Methods§
fn FormatInt(&self, value: i64) -> Result<HSTRING>
fn FormatUInt(&self, value: u64) -> Result<HSTRING>
fn FormatDouble(&self, value: f64) -> 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.