Module Cmdliner_arg.Conv

type 'a parser = string -> ('a, string) Stdlib.result
type 'a fmt = Stdlib.Format.formatter -> 'a -> unit
type 'a t = 'a conv
val make : ?completion:'a Completion.t -> docv:string -> parser:'a parser -> pp:'a fmt -> unit -> 'a t
val of_conv : 'a t -> ?completion:'a Completion.t -> ?docv:string -> ?parser:'a parser -> ?pp:'a fmt -> unit -> 'a t
val docv : 'a conv -> string
val parser : 'a conv -> 'a parser
val pp : 'a conv -> 'a fmt
val completion : 'a t -> 'a Completion.t