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;

Auto Trait Implementations

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.