package obuilder

  1. Overview
  2. Docs

Configuration information to set up a store.

type t = [
  1. | `Btrfs of string
  2. | `Zfs of string
  3. | `Rsync of string
]
val of_string : string -> ([> `Btrfs of string | `Rsync of string | `Zfs of string ], [> `Msg of string ]) Stdlib.result
val pp : Stdlib.Format.formatter -> [< `Btrfs of string | `Rsync of string | `Zfs of string ] -> unit
type store =
  1. | Store : (module S.STORE with type t = 'a) * 'a -> store
val to_store : [< `Btrfs of string | `Rsync of string | `Zfs of string ] -> store Lwt.t