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