icu_datetime
Formatting date and time.
This module is published as its own crate (icu_datetime
)
and as part of the icu
crate. See the latter for more details on the ICU4X project.
[TypedDateTimeFormatter
] and [DateTimeFormatter
] are the main types of the component. They accepts a set of arguments which
allow it to collect necessary data from the data provider, and once instantiated, can be
used to quickly format any date and time provided. There are variants of these types that can format greater or fewer components,
including [TypedDateFormatter
] & [DateFormatter
], [TypedZonedDateTimeFormatter
] & [ZonedDateTimeFormatter
], [TimeFormatter
],
and TimeZoneFormatter
These formatters work with types from the calendar
module, like Date
, DateTime
, and Time
,
and timezone::CustomTimeZone
, however other types may be used provided they implement the traits from the [input
] module.
Each instance of a date-related formatter (i.e. not [TimeFormatter
] or TimeZoneFormatter
is associated with a particular Calendar
.
The "Typed" vs untyped formatter distinction is to help with this. For example, if you know at compile time that you
will only be formatting Gregorian dates, you can use TypedDateTimeFormatter<Gregorian>
and the
APIs will make sure that only Gregorian DateTime
s are used with the calendar. On the other hand, if you want to be able to select
the calendar at runtime, you can use [DateTimeFormatter
] with the calendar specified in the locale, and use it with
DateTime
,AnyCalendar
. These formatters still require dates associated
with the appropriate calendar (though they will convert ISO dates to the calendar if provided), they just do not force the
programmer to pick the calendar at compile time.
Examples
use ;
use ;
use ;
use FromStr;
use assert_writeable_eq;
// See the next code example for a more ergonomic example with .into().
let options =
Length;
// You can work with a formatter that can select the calendar at runtime:
let locale = from_str.unwrap;
let dtf = try_new
.expect;
// Or one that selects a calendar at compile time:
let typed_dtf = try_new
.expect;
let typed_date =
try_new_gregorian_datetime.unwrap;
// prefer using ISO dates with DateTimeFormatter
let date = typed_date.to_iso.to_any;
let formatted_date = dtf.format.expect;
let typed_formatted_date = typed_dtf.format;
assert_writeable_eq!;
assert_writeable_eq!;
let formatted_date_string =
dtf.format_to_string.expect;
let typed_formatted_date_string = typed_dtf.format_to_string;
assert_eq!;
assert_eq!;
The options can be created more ergonomically using the Into
trait to automatically
convert a [options::length::Bag
] into a [DateTimeFormatterOptions::Length
].
use Gregorian;
use ;
use locale;
let options = from_date_time_style
.into;
let dtf = try_new;
At the moment, the crate provides only options using the Length
bag, but in the future,
we expect to add more ways to customize the output, like skeletons, and components.
More Information
For more information on development, authorship, contributing etc. please visit ICU4X home page
.