Pull-based RFC 5322 message parser — lazy header lookup, byte-level scan, zero-alloc borrowed slices. Skip-ahead to the header you want without building a full Message tree.
#![doc=include_str!("../README.md")]#![deny(missing_docs)]#![deny(rustdoc::broken_intra_doc_links)]//! Internal layout: a single `Message<'a>` borrows the message bytes.
//! Header lookup is a forward scan of the header region; body access
//! locates and caches the offset of the empty line that terminates the
//! header section.
modheader;modmessage;pubuseheader::{Header, HeaderIter};pubusemessage::Message;