Struct icu_capi::decimal::ffi::ICU4XFixedDecimalFormatter
source · pub struct ICU4XFixedDecimalFormatter(pub FixedDecimalFormatter);
Expand description
An ICU4X Fixed Decimal Format object, capable of formatting a ICU4XFixedDecimal
as a string.
Tuple Fields§
§0: FixedDecimalFormatter
Implementations§
source§impl ICU4XFixedDecimalFormatter
impl ICU4XFixedDecimalFormatter
sourcepub fn create_with_grouping_strategy(
provider: &ICU4XDataProvider,
locale: &ICU4XLocale,
grouping_strategy: ICU4XFixedDecimalGroupingStrategy,
) -> Result<Box<ICU4XFixedDecimalFormatter>, ICU4XError>
pub fn create_with_grouping_strategy( provider: &ICU4XDataProvider, locale: &ICU4XLocale, grouping_strategy: ICU4XFixedDecimalGroupingStrategy, ) -> Result<Box<ICU4XFixedDecimalFormatter>, ICU4XError>
Creates a new ICU4XFixedDecimalFormatter
from locale data.
sourcepub fn create_with_decimal_symbols_v1(
data_struct: &ICU4XDataStruct,
grouping_strategy: ICU4XFixedDecimalGroupingStrategy,
) -> Result<Box<ICU4XFixedDecimalFormatter>, ICU4XError>
pub fn create_with_decimal_symbols_v1( data_struct: &ICU4XDataStruct, grouping_strategy: ICU4XFixedDecimalGroupingStrategy, ) -> Result<Box<ICU4XFixedDecimalFormatter>, ICU4XError>
Creates a new ICU4XFixedDecimalFormatter
from preconstructed locale data in the form of an ICU4XDataStruct
constructed from ICU4XDataStruct::create_decimal_symbols()
.
The contents of the data struct will be consumed: if you wish to use the struct again it will have to be reconstructed. Passing a consumed struct to this method will return an error.
sourcepub fn format(
&self,
value: &ICU4XFixedDecimal,
write: &mut DiplomatWriteable,
) -> Result<(), ICU4XError>
pub fn format( &self, value: &ICU4XFixedDecimal, write: &mut DiplomatWriteable, ) -> Result<(), ICU4XError>
Formats a ICU4XFixedDecimal
to a string.
Auto Trait Implementations§
impl Freeze for ICU4XFixedDecimalFormatter
impl RefUnwindSafe for ICU4XFixedDecimalFormatter
impl !Send for ICU4XFixedDecimalFormatter
impl !Sync for ICU4XFixedDecimalFormatter
impl Unpin for ICU4XFixedDecimalFormatter
impl UnwindSafe for ICU4XFixedDecimalFormatter
Blanket Implementations§
source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
source§impl<T> Filterable for T
impl<T> Filterable for T
source§fn filterable(
self,
filter_name: &'static str,
) -> RequestFilterDataProvider<T, fn(_: DataRequest<'_>) -> bool>
fn filterable( self, filter_name: &'static str, ) -> RequestFilterDataProvider<T, fn(_: DataRequest<'_>) -> bool>
Creates a filterable data provider with the given name for debugging. Read more
source§impl<T> IntoEither for T
impl<T> IntoEither for T
source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self
into a Left
variant of Either<Self, Self>
if into_left
is true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read moresource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self
into a Left
variant of Either<Self, Self>
if into_left(&self)
returns true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read more