pub enum SerializationFormat {
SimpleJson,
}
Expand description
A serialization format, as a subset of Json.
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 forLinear
;- …
Auto Trait Implementations§
impl Freeze for SerializationFormat
impl RefUnwindSafe for SerializationFormat
impl Send for SerializationFormat
impl Sync for SerializationFormat
impl Unpin for SerializationFormat
impl UnwindSafe for SerializationFormat
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more