This library is meant to be a simple XMLRPC library with the minimal support needed to build out applications using XMLRPC. No additional parsing, no transports, etc.
value_from_str
changed to returnT
whereT: serde::de::Deserialize<'a>
value_to_string
changed to takeT
whereT: serde::ser::Serialize
request_to_string
changed to take animpl Iterator<Item = Value>
- Structs changed to only allow string types as keys
- Drop DecodingError::UnexpectedError variant
- Impl
serde::Deserialize
directly onValue
rather than through a wrapper type
response_from_str
changed to take animpl Iterator<Item = Value>