Expand description

ISO8601 is a parser library for the ISO8601 format and partially RFC3339.

Validity of a given date is not guaranteed, this parser will happily parse "2015-02-29" as a valid date, even though 2015 was no leap year.

Example

let datetime = iso8601::datetime("2015-06-26T16:43:23+0200").unwrap();

Structs

Compound struct, holds Date and Time

A time object

Enums

A date, can hold three different formats.

A time duration.

Functions

Parses a date string.

Parses a datetime string.

Parses a duration string.

Parses a time string.