pub fn save<T: Serialize>(t: T) -> Result<Save<'static>, Error>
Expand description
Save the serialization tree, returning an Err
if:
- Any node’s call to
serde::Serialize::serialize
fails. - Any
Save::Map
has an unmatched number of keys and values
protocol errors are ignored.