mailrs_rfc5322/lib.rs
1#![doc = include_str!("../README.md")]
2#![deny(missing_docs)]
3#![deny(rustdoc::broken_intra_doc_links)]
4
5//! Internal layout: a single `Message<'a>` borrows the message bytes.
6//! Header lookup is a forward scan of the header region; body access
7//! locates and caches the offset of the empty line that terminates the
8//! header section.
9
10mod header;
11mod message;
12
13pub use header::{Header, HeaderIter};
14pub use message::Message;