Expand description
Library for custom implementations of serialize/deserialize.
Functionsยง
- deserialize_
map_ from_ kv_ vec - deserialize_
seq_ to_ arr - Deserialize sequence of T into an Array of SIZE == Size of sequence. This function is a workaround to the serde limitation on array size (32) deserialization.
- serialize_
arc_ mutex - Serialize data
Tinside anArc<Mutex<T>>.Tmust be serializable. - serialize_
arr - Serialize data T inside arrays as a seq instead of a tuple. T must be serializable. When deserializing, an array size validation is required to transform the slice to an array.
- serialize_
map_ as_ kv_ vec