package rpmfile

  1. Overview
  2. Docs

Source file file_entry.ml

1
2
3
4
5
6
7
(** A file record of archive. *)

type t = { metadata : Header.t; filename : string; contents : contents }
and t_with_string_payload = t
and t_with_bigstring_payload = t
and t_without_payload = t
and contents = [ `String of string | `Bigstring of string ] option