//! Partial parsers implementation of [RFC2234]: Augmented BNF for
//! Syntax Specifications: ABNF.
//!
//! [RFC2234]: https://datatracker.ietf.org/doc/html/rfc2234
use ;
// 6.1 Core Rules
// https://datatracker.ietf.org/doc/html/rfc2234#section-6.1
// ALPHA = %x41-5A / %x61-7A ; A-Z / a-z
pub
// DIGIT = %x30-39
// ; 0-9
pub
// DQUOTE = %x22
// ; " (Double Quote)
pub
// WSP = SP / HTAB
// ; white space
pub