mailparsing/
lib.rs

1mod builder;
2mod conformance;
3mod error;
4mod header;
5mod headermap;
6mod mimepart;
7mod nom_utils;
8mod normalize;
9mod rfc5322_parser;
10mod strings;
11mod textwrap;
12
13pub use error::MailParsingError;
14pub type Result<T> = std::result::Result<T, MailParsingError>;
15
16pub use builder::*;
17pub use conformance::*;
18pub use header::{Header, HeaderParseResult, MessageConformance};
19pub use headermap::*;
20pub use mimepart::*;
21pub use normalize::*;
22pub use rfc5322_parser::*;
23pub use strings::SharedString;