sig   type raw =     Rfc2047.raw =       QuotedPrintable of string     | Base64 of MrMime_base64.Decoder.result   type unstructured =       [ `CR of int       | `CRLF       | `Encoded of string * raw       | `LF of int       | `Text of string       | `WSP ] list   type phrase_or_msg_id =       [ `MsgID of MrMime_msgID.msg_id       | `Phrase of           [ `Dot           | `Encoded of string * raw           | `Word of [ `Atom of string | `String of string ] ] list ]   type field = Rfc5322.field   module Map :     sig       type key = String.t       type 'a t = 'Map.Make(String).t       val empty : 'a t       val is_empty : 'a t -> bool       val mem : key -> 'a t -> bool       val add : key -> '-> 'a t -> 'a t       val singleton : key -> '-> 'a t       val remove : key -> 'a t -> 'a t       val merge :         (key -> 'a option -> 'b option -> 'c option) -> 'a t -> 'b t -> 'c t       val union : (key -> '-> '-> 'a option) -> 'a t -> 'a t -> 'a t       val compare : ('-> '-> int) -> 'a t -> 'a t -> int       val equal : ('-> '-> bool) -> 'a t -> 'a t -> bool       val iter : (key -> '-> unit) -> 'a t -> unit       val fold : (key -> '-> '-> 'b) -> 'a t -> '-> 'b       val for_all : (key -> '-> bool) -> 'a t -> bool       val exists : (key -> '-> bool) -> 'a t -> bool       val filter : (key -> '-> bool) -> 'a t -> 'a t       val partition : (key -> '-> bool) -> 'a t -> 'a t * 'a t       val cardinal : 'a t -> int       val bindings : 'a t -> (key * 'a) list       val min_binding : 'a t -> key * 'a       val max_binding : 'a t -> key * 'a       val choose : 'a t -> key * 'a       val split : key -> 'a t -> 'a t * 'a option * 'a t       val find : key -> 'a t -> 'a       val map : ('-> 'b) -> 'a t -> 'b t       val mapi : (key -> '-> 'b) -> 'a t -> 'b t     end   type header = {     date : MrMime_date.date option;     from : MrMime_address.mailbox list;     sender : MrMime_address.mailbox option;     reply_to : MrMime_address.address list;     to' : MrMime_address.address list;     cc : MrMime_address.address list;     bcc : MrMime_address.address list;     subject : unstructured option;     msg_id : MrMime_msgID.msg_id option;     in_reply_to : phrase_or_msg_id list;     references : phrase_or_msg_id list;     comments : unstructured list;     keywords : MrMime_address.phrase list list;     resents : MrMime_resent.resent list;     traces : MrMime_trace.trace list;     fields : unstructured list Map.t;     unsafe : unstructured list Map.t;     skip : string list;   }   val pp_raw : Format.formatter -> raw -> unit   val pp_unstructured : Format.formatter -> unstructured -> unit   val pp_phrase_or_msg_id : Format.formatter -> phrase_or_msg_id -> unit   val pp_field : Format.formatter -> field -> unit   val pp : Format.formatter -> header -> unit   module Encoder :     sig       val w_unstructured :         (unstructured,          ([> `Partial of Bytes.t * int * int * (int -> 'a) ] as 'a)          Encoder.partial)         Wrap.k1       val w_field :         ([ `Bcc of Rfc5322.address list          | `Cc of Rfc5322.address list          | `Comments of Rfc5322.unstructured          | `Date of Rfc5322.date          | `Field of string * Rfc5322.unstructured          | `From of Rfc5322.mailbox list          | `InReplyTo of Rfc5322.phrase_or_msg_id list          | `Keywords of Rfc5322.phrase list          | `MessageID of Rfc822.msg_id          | `References of Rfc5322.phrase_or_msg_id list          | `ReplyTo of Rfc5322.address list          | `Sender of Rfc5322.mailbox          | `Skip of string          | `Subject of Rfc5322.unstructured          | `To of Rfc5322.address list          | `Unsafe of string * Rfc5322.unstructured ],          ([> `Partial of Bytes.t * int * int * (int -> 'a) ] as 'a)          Encoder.partial)         Encoder.k1       val w_header :         (header,          ([> `Partial of Bytes.t * int * int * (int -> 'a) ] as 'a)          Encoder.partial)         Encoder.k1     end   module Decoder :     sig       val header :         ([> field ] as 'a) list -> (header * 'a list) MrMime_parser.t     end   val to_string : header -> string   val of_string : ?chunk:int -> string -> (header * [> field ] list) option   val of_string_raw :     ?chunk:int ->     string -> int -> int -> ((header * [> field ] list) * int) option   val equal : header -> header -> bool end