//! Enumerations shared across the crate.
//! Currently only exposes the `Format` enum representing supported
//! serialization/deserialization formats.
use ToString;
/// Supported message serialization/deserialization formats.
/// Note that the structure to be serialized / deserialized must implement
/// [`serde::Serialize`] and [`serde::Deserialize`].