Vmm_commandsSourceThe type of versions of the grammar defined below.
type stats_cmd = [ | `Stats_add of string * int * (string * string) list| `Stats_remove| `Stats_subscribe| `Stats_initial ]type unikernel_cmd = [ | `Unikernel_info| `Unikernel_create of Vmm_core.Unikernel.config| `Unikernel_force_create of Vmm_core.Unikernel.config| `Unikernel_destroy| `Unikernel_get of int| `Old_unikernel_info| `Old_unikernel_get ]type t = [ | `Console_cmd of console_cmd| `Stats_cmd of stats_cmd| `Unikernel_cmd of unikernel_cmd| `Policy_cmd of policy_cmd| `Block_cmd of block_cmd ]type success = [ | `Empty| `String of string| `Policies of (Vmm_core.Name.t * Vmm_core.Policy.t) list| `Old_unikernels of (Vmm_core.Name.t * Vmm_core.Unikernel.config) list| `Unikernel_info of (Vmm_core.Name.t * Vmm_core.Unikernel.info) list| `Unikernel_image of bool * Cstruct.t| `Block_devices of (Vmm_core.Name.t * int * bool) list| `Block_device_image of bool * Cstruct.t ]