time/parsing/combinator/rfc/mod.rs
1//! Combinators for rules as defined in a standard.
2//!
3//! When applicable, these rules have been converted strictly following the ABNF syntax as specified
4//! in [RFC 2234].
5//!
6//! [RFC 2234]: https://datatracker.ietf.org/doc/html/rfc2234
7
8pub(crate) mod iso8601;
9pub(crate) mod rfc2234;
10pub(crate) mod rfc2822;