2020-12-02 12:30:47 +00:00
|
|
|
use serde::Serialize;
|
|
|
|
|
2020-12-02 19:12:24 +00:00
|
|
|
/// Utility function: encodes any serializable value in MessagePack binary format
|
|
|
|
/// using the RMP library.
|
|
|
|
///
|
|
|
|
/// Field names and variant names are included in the serialization.
|
|
|
|
/// This is used internally by the netapp communication protocol.
|
2020-12-02 12:30:47 +00:00
|
|
|
pub fn rmp_to_vec_all_named<T>(val: &T) -> Result<Vec<u8>, rmp_serde::encode::Error>
|
|
|
|
where
|
|
|
|
T: Serialize + ?Sized,
|
|
|
|
{
|
|
|
|
let mut wr = Vec::with_capacity(128);
|
|
|
|
let mut se = rmp_serde::Serializer::new(&mut wr)
|
|
|
|
.with_struct_map()
|
|
|
|
.with_string_variants();
|
|
|
|
val.serialize(&mut se)?;
|
|
|
|
Ok(wr)
|
|
|
|
}
|