Module Values.AnalyzerNameUnionSource

The combination of the existing analyzers.

Sourcetype nonrec t = {
  1. binaryAnalyzerName : BinaryAnalyzerName.t option;
    (*

    The binary analyzer names.

    *)
  2. runTimeAnalyzerName : RunTimeAnalyzerName.t option;
    (*

    The assessment analyzer names.

    *)
  3. sourceCodeAnalyzerName : SourceCodeAnalyzerName.t option;
    (*

    The source code analyzer names.

    *)
}
Sourceval make : ?binaryAnalyzerName:??? -> ?runTimeAnalyzerName:??? -> ?sourceCodeAnalyzerName:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Enum of string ]) 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