Function: ghub--req-headers

ghub--req-headers is a byte-compiled function defined in ghub.el.

Signature

(ghub--req-headers ghub--req-headers X)

Documentation

Access slot "headers" of ghub--req struct X.

Source Code

;; Defined in ~/.emacs.d/elpa/ghub-20260401.1239/ghub.el
;;; Request
;;;; Object

(cl-defstruct (ghub--req
               (:constructor ghub--make-req)
               (:copier nil))
  (url         nil :read-only nil)
  (forge       nil :read-only t)
  (silent      nil :read-only t)
  (method      nil :read-only t)
  (headers     nil :read-only t)
  (handler     nil :read-only t)
  (unpaginate  nil :read-only nil)
  (noerror     nil :read-only t)
  (reader      nil :read-only t)
  (buffer      nil :read-only t)
  (synchronous nil :read-only t)
  (callback    nil :read-only t)
  (errorback   nil :read-only t)
  (value       nil :read-only nil)
  (extra       nil :read-only nil))