Trait DateInputMarkers

Source
pub trait DateInputMarkers: UnstableSealed {
    type YearInput: IntoOption<YearInfo>;
    type MonthInput: IntoOption<MonthInfo>;
    type DayOfMonthInput: IntoOption<DayOfMonth>;
    type DayOfYearInput: IntoOption<DayOfYear>;
    type DayOfWeekInput: IntoOption<Weekday>;
}
Expand description

A trait associating types for date formatting in any calendar (input types only).

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 YearInput: IntoOption<YearInfo>

Marker for resolving the year input field.

Source

type MonthInput: IntoOption<MonthInfo>

Marker for resolving the month input field.

Source

type DayOfMonthInput: IntoOption<DayOfMonth>

Marker for resolving the day-of-month input field.

Source

type DayOfYearInput: IntoOption<DayOfYear>

Marker for resolving the day-of-year input field.

Source

type DayOfWeekInput: IntoOption<Weekday>

Marker for resolving the day-of-week input field.

Implementations on Foreign Typesยง

Sourceยง

impl DateInputMarkers for ()

Implementorsยง

Sourceยง

impl DateInputMarkers for CalendarPeriodFieldSet

Sourceยง

impl DateInputMarkers for DateFieldSet

Sourceยง

impl DateInputMarkers for D

Sourceยง

impl DateInputMarkers for DE

Sourceยง

impl DateInputMarkers for DET

Sourceยง

impl DateInputMarkers for DT

Sourceยง

impl DateInputMarkers for E

Sourceยง

impl DateInputMarkers for ET

Sourceยง

impl DateInputMarkers for M

Sourceยง

impl DateInputMarkers for MD

Sourceยง

impl DateInputMarkers for MDE

Sourceยง

impl DateInputMarkers for MDET

Sourceยง

impl DateInputMarkers for MDT

Sourceยง

impl DateInputMarkers for Y

Sourceยง

impl DateInputMarkers for YM

Sourceยง

impl DateInputMarkers for YMD

Sourceยง

impl DateInputMarkers for YMDE

Sourceยง

impl DateInputMarkers for YMDET

Sourceยง

impl DateInputMarkers for YMDT