Enum telemetry::SerializationFormat [] [src]

pub enum SerializationFormat {
    SimpleJson,
}

A subformat of Json to use for serialization.

Variants

SimpleJson

Simple Json: - Flag are represented as a single boolean; - KeyedFlag are represented as an array; - Linear are represented as an array of numbers, one cell per bucket; - KeyedLinear are represented as an object, one field per histogram, with name = key, value = array of numbers as for Linear; - ...