Expand description
This module deals with serializing rust types into raw SPA pods.
A raw pod can be serialized by passing a implementor of the PodSerialize
trait
to PodSerializer::serialize
.
The crate provides a number of implementors of this trait either directly,
or through FixedSizedPod
.
You can also implement the PodSerialize
trait on another type yourself. See the traits documentation for more
information on how to do that.
Structs§
- This struct handles serializing arrays.
- This struct handles serializing objects.
- This struct is responsible for serializing a
PodSerialize
implementor into the raw POD format. - This struct is returned by
PodSerialize
implementors on serialization success. - This struct handles serializing structs.
Enums§
- Base type for generator errors
Traits§
- Implementors of this trait are able to serialize themselves into a SPA pod by using a
PodSerializer
.