package mirage-runtime

  1. Overview
  2. Docs

Mirage command-line arguments

include module type of Functoria_runtime.Arg
type 'a t
val opt : 'a Cmdliner.Arg.converter -> 'a -> Cmdliner.Arg.info -> 'a t
val required : 'a Cmdliner.Arg.converter -> Cmdliner.Arg.info -> 'a t
val key : ?default:'a -> 'a Cmdliner.Arg.converter -> Cmdliner.Arg.info -> 'a t
val flag : Cmdliner.Arg.info -> bool t
val make : (string -> 'a option) -> 'a Fmt.t -> 'a Cmdliner.Arg.converter

make of_string pp is the command-line argument converter using on of_string and pp.

module type S = sig ... end

S is the signature used by of_module to create a command-line argument converter.

val of_module : (module S with type t = 'a) -> 'a Cmdliner.Arg.converter

of module (module M) creates a command-line argyument converter from a module satisfying the signature S.

Mirage command-line argument converters

val ip : Ipaddr.t Cmdliner.Arg.converter

ip converts IP address.

val ipv4_address : Ipaddr.V4.t Cmdliner.Arg.converter

ipv4 converts an IPv4 address.

val ipv4 : (Ipaddr.V4.Prefix.t * Ipaddr.V4.t) Cmdliner.Arg.converter

ipv4 converts ipv4/netmask to Ipaddr.V4.t * Ipaddr.V4.Prefix.t .

val ipv6 : Ipaddr.V6.t Cmdliner.Arg.converter

ipv6converts IPv6 address.

val ipv6_prefix : Ipaddr.V6.Prefix.t Cmdliner.Arg.converter

ipv6_prefix converts IPv6 prefixes.

val log_threshold : log_threshold Cmdliner.Arg.converter

log_threshold converts log reporter threshold.

OCaml

Innovation. Community. Security.