Trait DateTimeMarkers

Source
pub trait DateTimeMarkers: UnstableSealed + DateTimeNamesMarker {
    type D;
    type T;
    type Z;
    type GluePatternV1: DataMarker<DataStruct = GluePattern<'static>>;
}
Expand description

A trait associating constants and types implementing various other traits required for datetime formatting.

This is a sealed trait implemented on field set markers.

๐Ÿšง This trait is considered unstable; it may change at any time, in breaking or non-breaking ways, including in SemVer minor releases. Do not implement this trait in userland unless you are prepared for things to occasionally break.

Required Associated Typesยง

Source

type D

Associated types for date formatting.

Should implement DateDataMarkers, TypedDateDataMarkers, and DateInputMarkers.

Source

type T

Associated types for time formatting.

Should implement TimeMarkers.

Source

type Z

Associated types for time zone formatting.

Should implement ZoneMarkers.

Source

type GluePatternV1: DataMarker<DataStruct = GluePattern<'static>>

Marker for loading the date/time glue pattern.

Implementorsยง

Sourceยง

impl DateTimeMarkers for CalendarPeriodFieldSet

Sourceยง

impl DateTimeMarkers for CompositeDateTimeFieldSet

Sourceยง

impl DateTimeMarkers for CompositeFieldSet

Sourceยง

impl DateTimeMarkers for DateAndTimeFieldSet

Sourceยง

impl DateTimeMarkers for DateFieldSet

Sourceยง

impl DateTimeMarkers for TimeFieldSet

Sourceยง

impl DateTimeMarkers for ZoneFieldSet

Sourceยง

impl DateTimeMarkers for D

Sourceยง

impl DateTimeMarkers for DE

Sourceยง

impl DateTimeMarkers for DET

Sourceยง

impl DateTimeMarkers for DT

Sourceยง

impl DateTimeMarkers for E

Sourceยง

impl DateTimeMarkers for ET

Sourceยง

impl DateTimeMarkers for M

Sourceยง

impl DateTimeMarkers for MD

Sourceยง

impl DateTimeMarkers for MDE

Sourceยง

impl DateTimeMarkers for MDET

Sourceยง

impl DateTimeMarkers for MDT

Sourceยง

impl DateTimeMarkers for T

Sourceยง

impl DateTimeMarkers for Y

Sourceยง

impl DateTimeMarkers for YM

Sourceยง

impl DateTimeMarkers for YMD

Sourceยง

impl DateTimeMarkers for YMDE

Sourceยง

impl DateTimeMarkers for YMDET

Sourceยง

impl DateTimeMarkers for YMDT

Sourceยง

impl DateTimeMarkers for ExemplarCity

Sourceยง

impl DateTimeMarkers for GenericLong

Sourceยง

impl DateTimeMarkers for GenericShort

Sourceยง

impl DateTimeMarkers for LocalizedOffsetLong

Sourceยง

impl DateTimeMarkers for LocalizedOffsetShort

Sourceยง

impl DateTimeMarkers for Location

Sourceยง

impl DateTimeMarkers for SpecificLong

Sourceยง

impl DateTimeMarkers for SpecificShort

Sourceยง

impl<DT, Z> DateTimeMarkers for Combo<DT, Z>