Module Values.ExpressionStatusSource

The value of an Expression and its current status.

Sourcetype nonrec t = {
  1. options : Expression.t option;
    (*

    The expression that is evaluated for sorting while processing a search request.

    *)
  2. status : OptionStatus.t option;
}
Sourceval make : ?options:??? -> ?status:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Structure of (string * [> `Boolean of Boolean.t | `Enum of string | `Integer of UIntValue.t | `String of StandardName.t | `Timestamp of UpdateTimestamp.t ]) list ]) 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