Module temporal_rs::components

source ·
Expand description

The primary date-time components provided by Temporal.

The below components are the main primitives of the Temporal specification:

  • Date -> PlainDate
  • DateTime -> PlainDateTime
  • Time -> PlainTime
  • Duration -> Duration
  • Instant -> Instant
  • MonthDay -> PlainMonthDay
  • YearMonth -> PlainYearMonth
  • ZonedDateTime -> ZonedDateTime

The Temporal specification, along with this implementation aims to provide full support for time zones and non-gregorian calendars that are compliant with standards like ISO 8601, RFC 3339, and RFC 5545.

Modules§

  • This module implements the calendar traits and related components.
  • This module implements Duration along with it’s methods and components.
  • This module implements the Temporal TimeZone and components.

Structs§

  • The native Rust implementation of Temporal.PlainDate.
  • The native Rust implementation of Temporal.PlainDateTime
  • The native Rust implementation of Temporal.Duration.
  • The native Rust implementation of Temporal.Instant
  • The native Rust implementation of Temporal.PlainMonthDay
  • The native Rust implementation of Temporal.PlainTime.
  • The native Rust implementation of Temporal.YearMonth.
  • The native Rust implementation of Temporal.ZonedDateTime.