Function: rmail-mime-display-header

rmail-mime-display-header is a byte-compiled function defined in rmailmm.el.gz.

Signature

(rmail-mime-display-header CL-X)

Documentation

Access slot "header" of rmail-mime-display struct CL-X.

Source Code

;; Defined in /usr/src/emacs/lisp/mail/rmailmm.el.gz
;; Display options returned by rmail-mime-entity-display.
;; Value is on of nil, t, raw.
(cl-defstruct (rmail-mime-display
               (:copier rmail-mime--copy-display) (:constructor nil)
               (:constructor rmail-mime--make-display (header tagline body)
                "Make an object describing how to display.
Each field's value is a symbol for the corresponding
item with these values:
  nil: not displayed
  t:   displayed by the decoded presentation form
  raw: displayed by the raw MIME data (for the header and body only)."))
  header tagline body)