icu_datetime

Struct TypedDateFormatter

Source
pub struct TypedDateFormatter<C>(/* private fields */);
Expand description

TypedDateFormatter is a formatter capable of formatting dates from a calendar selected at compile time. For the difference between this and DateFormatter, please read the crate root docs.

When constructed, it uses data from the data provider, selected locale and provided options to collect all data necessary to format any dates into that locale.

For that reason, one should think of the process of formatting a date in two steps - first, a computational heavy construction of TypedDateFormatter, and then fast formatting of DateInput data using the instance. ๐Ÿ“ This item has a stack size of 4400 bytes on the stable toolchain at release date.

ยงExamples

use icu::calendar::{Date, Gregorian};
use icu::datetime::{options::length, TypedDateFormatter};
use icu::locid::locale;
use writeable::assert_writeable_eq;

let df = TypedDateFormatter::<Gregorian>::try_new_with_length(
    &locale!("en").into(),
    length::Date::Full,
)
.expect("Failed to create TypedDateFormatter instance.");

let date = Date::try_new_gregorian_date(2020, 9, 1)
    .expect("Failed to construct Date.");

assert_writeable_eq!(df.format(&date), "Tuesday, September 1, 2020");

This model replicates that of ICU and ECMA402.

Implementationsยง

Sourceยง

impl<C: CldrCalendar> TypedDateFormatter<C>

Source

pub fn try_new_with_length( locale: &DataLocale, length: Date, ) -> Result<Self, DateTimeError>

Constructor that takes a selected locale and a list of options, then collects all compiled data necessary to format date and time values into the given locale.

โœจ Enabled with the compiled_data Cargo feature.

๐Ÿ“š Help choosing a constructor

ยงExamples
use icu::calendar::Date;
use icu::calendar::Gregorian;
use icu::datetime::{options::length, TypedDateFormatter};
use icu::locid::locale;
use writeable::assert_writeable_eq;

let formatter = TypedDateFormatter::<Gregorian>::try_new_with_length(
    &locale!("en").into(),
    length::Date::Full,
)
.unwrap();

assert_writeable_eq!(
    formatter.format(&Date::try_new_gregorian_date(2022, 8, 29).unwrap()),
    "Monday, August 29, 2022",
);

If the locale has a calendar keyword, the keyword is ignored in favor of the type parameter on the TypedDateFormatter. To obey the calendar keyword, use DateFormatter instead.

use icu::calendar::indian::Indian;
use icu::calendar::Date;
use icu::datetime::{options::length, TypedDateFormatter};
use icu::locid::locale;
use writeable::assert_writeable_eq;

let formatter = TypedDateFormatter::<Indian>::try_new_with_length(
    &locale!("en-u-ca-japanese").into(),
    length::Date::Full,
)
.unwrap();

// Indian format from type wins over locale keyword
assert_writeable_eq!(
    formatter.format(&Date::try_new_indian_date(1944, 6, 7).unwrap()),
    "Monday, Bhadra 7, 1944 Saka",
);
Source

pub fn try_new_with_length_with_any_provider( provider: &(impl AnyProvider + ?Sized), locale: &DataLocale, length: Date, ) -> Result<Self, DateTimeError>

A version of [Self :: try_new_with_length] that uses custom data provided by an AnyProvider.

๐Ÿ“š Help choosing a constructor

Source

pub fn try_new_with_length_with_buffer_provider( provider: &(impl BufferProvider + ?Sized), locale: &DataLocale, length: Date, ) -> Result<Self, DateTimeError>

A version of [Self :: try_new_with_length] that uses custom data provided by a BufferProvider.

โœจ Enabled with the serde feature.

๐Ÿ“š Help choosing a constructor

Source

pub fn try_new_with_length_unstable<D>( provider: &D, locale: &DataLocale, length: Date, ) -> Result<Self, DateTimeError>

A version of Self::try_new_with_length that uses custom data provided by a DataProvider.

๐Ÿ“š Help choosing a constructor

โš ๏ธ The bounds on provider may change over time, including in SemVer minor releases.
Source

pub fn format<'l, T>(&'l self, value: &T) -> FormattedDateTime<'l>
where T: DateInput<Calendar = C>,

Takes a DateTimeInput implementer and returns an instance of a FormattedDateTime that contains all information necessary to display a formatted date and operate on it.

ยงExamples
use icu::calendar::{Date, Gregorian};
use icu::datetime::{options::length, TypedDateFormatter};
use icu::locid::locale;
use writeable::assert_writeable_eq;
let df = TypedDateFormatter::<Gregorian>::try_new_with_length(
    &locale!("en").into(),
    length::Date::Full,
)
.expect("Failed to create TypedDateFormatter instance.");

let date = Date::try_new_gregorian_date(2020, 9, 1)
    .expect("Failed to construct Date.");

assert_writeable_eq!(df.format(&date), "Tuesday, September 1, 2020");
Source

pub fn format_to_string(&self, value: &impl DateInput<Calendar = C>) -> String

Takes a DateTimeInput implementer and returns it formatted as a string.

ยงExamples
use icu::calendar::{Date, Gregorian};
use icu::datetime::{options::length, TypedDateFormatter};
use icu::locid::locale;
let df = TypedDateFormatter::<Gregorian>::try_new_with_length(
    &locale!("en").into(),
    length::Date::Short,
)
.expect("Failed to create TypedDateTimeFormatter instance.");

let date = Date::try_new_gregorian_date(2020, 9, 1)
    .expect("Failed to construct Date.");

assert_eq!(df.format_to_string(&date), "9/1/20");

Trait Implementationsยง

Sourceยง

impl<C: Debug> Debug for TypedDateFormatter<C>

Sourceยง

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

Formats the value using the given formatter. Read more

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> IntoEither for T

Sourceยง

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 more
Sourceยง

fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
where F: FnOnce(&Self) -> bool,

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
Sourceยง

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

Sourceยง

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>,

Sourceยง

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.
Sourceยง

impl<T> ErasedDestructor for T
where T: 'static,

Sourceยง

impl<T> MaybeSendSync for T