Crate winnow_rfc9557

Source
Expand description

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

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 = winnow_rfc9557::parse_datetime("2015-06-26T16:43:23+02:00").unwrap();

Re-exports§

pub use date::parse_date;
pub use time::parse_time;
pub use datetime::parse_datetime;
pub use time_zone::parse_time_zone;
pub use offset::parse_offset;

Modules§

calendar
date
date mod
datetime
datetime mod
offset
suffix
time
time mod
time_zone
timezone mod