Module Values.ProgramSetValidationFailureSource

Contains information about validation failures that occurred during the processing of a program set in a quantum task.

Sourcetype nonrec t = {
  1. programIndex : Long.t option;
    (*

    The index of the program within the program set that failed validation.

    *)
  2. inputsIndex : Long.t option;
    (*

    The index of the input within the program set that failed validation.

    *)
  3. errors : ProgramValidationFailuresList.t option;
    (*

    A list of error messages describing the validation failures that occurred.

    *)
}
Sourceval make : ?programIndex:??? -> ?inputsIndex:??? -> ?errors:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `List of [> `String of String_.t ] list | `Long of Long.t ]) list ]
Sourceval to_query : t -> Awso.Client.Query.t
Sourceval of_xml : Awso.Xml.t -> t
Sourceval of_string : string -> t
Sourceval of_json : Yojson.Safe.t -> t
Sourceval to_json : t -> Yojson.Safe.t