1//! Email header encoding algorithms. 2 3mod hex; 4mod hex_encoding; 5pub mod quoted_string; 6pub mod rfc2047; 7pub mod rfc2231; 8mod utils; 9pub mod writer; 10 11pub(super) const MAX_LINE_LEN: usize = 76;