Struct icu::experimental::duration::DurationFormatter
source · pub struct DurationFormatter { /* private fields */ }
Expand description
A formatter for Duration
s.
DurationFormatter
supports:
- Rendering with different styles for each unit
- Digital formatting style
- Positive and negative duraitons
Read more about the options in the options
module.
See the crate-level documentation for examples.
Implementations§
source§impl DurationFormatter
impl DurationFormatter
sourcepub fn try_new_with_any_provider(
provider: &(impl AnyProvider + ?Sized),
locale: &DataLocale,
options: ValidatedDurationFormatterOptions,
) -> Result<DurationFormatter, DataError>
pub fn try_new_with_any_provider( provider: &(impl AnyProvider + ?Sized), locale: &DataLocale, options: ValidatedDurationFormatterOptions, ) -> Result<DurationFormatter, DataError>
A version of [Self :: try_new
] that uses custom data provided by an AnyProvider
.
sourcepub fn try_new_with_buffer_provider(
provider: &(impl BufferProvider + ?Sized),
locale: &DataLocale,
options: ValidatedDurationFormatterOptions,
) -> Result<DurationFormatter, DataError>
pub fn try_new_with_buffer_provider( provider: &(impl BufferProvider + ?Sized), locale: &DataLocale, options: ValidatedDurationFormatterOptions, ) -> Result<DurationFormatter, DataError>
A version of [Self :: try_new
] that uses custom data provided by a BufferProvider
.
✨ Enabled with the serde
feature.
sourcepub fn try_new(
locale: &DataLocale,
options: ValidatedDurationFormatterOptions,
) -> Result<DurationFormatter, DataError>
pub fn try_new( locale: &DataLocale, options: ValidatedDurationFormatterOptions, ) -> Result<DurationFormatter, DataError>
Creates a new DurationFormatter
from compiled locale data and an options bag.
✨ Enabled with the compiled_data
Cargo feature.
sourcepub fn try_new_unstable<D>(
provider: &D,
locale: &DataLocale,
options: ValidatedDurationFormatterOptions,
) -> Result<DurationFormatter, DataError>
pub fn try_new_unstable<D>( provider: &D, locale: &DataLocale, options: ValidatedDurationFormatterOptions, ) -> Result<DurationFormatter, DataError>
A version of Self::try_new
that uses custom data provided by a DataProvider
.
⚠️ The bounds on provider may change over time, including in SemVer minor releases.
sourcepub fn format<'l>(&'l self, duration: &'l Duration) -> FormattedDuration<'l>
pub fn format<'l>(&'l self, duration: &'l Duration) -> FormattedDuration<'l>
Formats a Duration
into a FormattedDuration
.
Auto Trait Implementations§
impl Freeze for DurationFormatter
impl RefUnwindSafe for DurationFormatter
impl Send for DurationFormatter
impl Sync for DurationFormatter
impl Unpin for DurationFormatter
impl UnwindSafe for DurationFormatter
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> 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