File tree Expand file tree Collapse file tree 5 files changed +18
-18
lines changed
Expand file tree Collapse file tree 5 files changed +18
-18
lines changed Original file line number Diff line number Diff line change 44 * SPDX-License-Identifier: Apache-2.0 OR MIT
55 */
66
7- pub mod address;
8- pub mod body;
9- pub mod builder;
10- pub mod header;
7+ mod address;
8+ mod body;
9+ mod builder;
10+ mod header;
1111mod html;
12- pub mod message;
12+ mod message;
1313#[ cfg( feature = "rkyv" ) ]
1414pub mod rkyv;
1515
Original file line number Diff line number Diff line change 55 */
66
77pub mod map;
8- pub mod multi_byte;
9- pub mod single_byte;
10- pub mod utf;
8+ mod multi_byte;
9+ mod single_byte;
10+ mod utf;
1111
1212pub type DecoderFnc = fn ( & [ u8 ] ) -> String ;
1313
Original file line number Diff line number Diff line change @@ -10,7 +10,7 @@ use crate::parsers::MessageStream;
1010
1111pub mod base64;
1212pub mod charsets;
13- pub mod encoded_word;
13+ mod encoded_word;
1414pub mod hex;
1515pub mod html;
1616pub mod quoted_printable;
Original file line number Diff line number Diff line change 55 */
66
77pub mod address;
8- pub mod content_type;
8+ mod content_type;
99pub mod date;
10- pub mod id;
11- pub mod list;
12- pub mod raw;
13- pub mod received;
10+ mod id;
11+ mod list;
12+ mod raw;
13+ mod received;
1414pub mod thread;
15- pub mod unstructured;
15+ mod unstructured;
1616
1717#[ cfg( test) ]
1818use serde:: { Deserialize , Serialize } ;
Original file line number Diff line number Diff line change 77use std:: { iter:: Peekable , ops:: Range , slice:: Iter } ;
88
99pub mod fields;
10- pub mod header;
11- pub mod message;
12- pub mod mime;
10+ mod header;
11+ mod message;
12+ mod mime;
1313pub mod preview;
1414
1515pub struct MessageStream < ' x > {
You can’t perform that action at this time.
0 commit comments