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;
11
12pub use error::MailParsingError;
13pub type Result<T> = std::result::Result<T, MailParsingError>;
14
15pub use builder::*;
16pub use conformance::*;
17pub use header::{Header, HeaderParseResult, MessageConformance};
18pub use headermap::*;
19pub use mimepart::*;
20pub use normalize::*;
21pub use rfc5322_parser::*;
22pub use strings::SharedString;