pub struct UFormattedNumber { /* private fields */ }
Expand description

Stores a formatted number result.

These objects are produced UNumberFormatter::format_int, UNumberFormatter::format_double, UNumberFormatter::format_decimal.

Implementations§

source§

impl UFormattedNumber

source

pub fn try_field_iter<'a>( &'a self ) -> Result<UFieldPositionIterator<'a, Self>, Error>

Obtains the field iterator for the formatted result.

Implements unumf_resultGetAllFieldPositions. Since 0.3.1.

Implements unumf_resultNextFieldPosition. Since 0.3.1. All access is via iterators.

Trait Implementations§

source§

impl Debug for UFormattedNumber

source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
source§

impl Drop for UFormattedNumber

source§

fn drop(&mut self)

Implements unumf_closeResult.

source§

impl TryInto<String> for UFormattedNumber

source§

fn try_into(self) -> Result<String, Error>

Converts this formatted number into a Rust string.

If you intend to use field position iterators on the result, you have to use TryInto<ustring::UChar> instead, because field position iterators use the fixed encoding of ustring::UChar for positioning.

Implements unumf_resultToString. Since 0.3.1.

§

type Error = Error

The type returned in the event of a conversion error.
source§

impl TryInto<UChar> for UFormattedNumber

source§

fn try_into(self) -> Result<UChar, Error>

Converts this formatted number into a Unicode string.

You want to use this method instead of TryInto<String> when you need to do additional processing on the result, such as extracting fields based on their indexes.

Implements unumf_resultToString. Since 0.3.1.

§

type Error = Error

The type returned in the event of a conversion error.

Auto Trait Implementations§

Blanket Implementations§

source§

impl<T> Any for T
where T: 'static + ?Sized,

source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
source§

impl<T> Borrow<T> for T
where T: ?Sized,

source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
source§

impl<T> BorrowMut<T> for T
where T: ?Sized,

source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
source§

impl<T> From<T> for T

source§

fn from(t: T) -> T

Returns the argument unchanged.

source§

impl<T, U> Into<U> for T
where U: From<T>,

source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

source§

impl<T, U> TryFrom<U> for T
where U: Into<T>,

§

type Error = Infallible

The type returned in the event of a conversion error.
source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
source§

impl<T, U> TryInto<U> for T
where U: TryFrom<T>,

§

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.
source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.