Module Values.TextDocumentStatisticsSource

Provides information about text documents indexed in an index.

Sourcetype nonrec t = {
  1. indexedTextDocumentsCount : IndexedTextDocumentsCount.t option;
    (*

    The number of text documents indexed.

    *)
  2. indexedTextBytes : IndexedTextBytes.t option;
    (*

    The total size, in bytes, of the indexed documents.

    *)
}
Sourceval make : ?indexedTextDocumentsCount:??? -> ?indexedTextBytes:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Integer of IndexedTextDocumentsCount.t | `Long of IndexedTextBytes.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