mail_headers/data/
mod.rs

1//! A number of little helper types, which contain text.
2//!
3//! They provide mainly following functionality:
4//!
5//! 1. remember if the data is Ascii/Utf8
6//!    - this might be extended at some point
7//!      to contain non ascii data
8//! 2. make sure the types are cheap to clone, by
9//!    sharing the text internally.
10//!    - this is mainly helpful when parsing a mail
11//!
12//! Both main points are for features which I decided to
13//! to not yet implement, as such **there is a chance
14//! that this module will be removed int the future**.
15//!
16mod inner_item;
17pub use self::inner_item::*;
18
19mod input;
20pub use self::input::*;
21
22mod simple_item;
23pub use self::simple_item::*;