Crates.io | serde_xmlrpc |
lib.rs | serde_xmlrpc |
version | 0.3.0-alpha.2 |
source | src |
created_at | 2020-02-18 22:41:39.82268 |
updated_at | 2024-03-09 09:51:47.662097 |
description | A simple, no nonsense, XML-RPC serde implementation for Rust |
homepage | |
repository | https://github.com/belak/serde-xmlrpc |
max_upload_size | |
id | 210463 |
size | 127,398 |
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 return T
where T: serde::de::Deserialize<'a>
value_to_string
changed to take T
where T: serde::ser::Serialize
request_to_string
changed to take an impl Iterator<Item = Value>
serde::Deserialize
directly on Value
rather than through a wrapper typeresponse_from_str
changed to take an impl Iterator<Item = Value>