serde-xml-rs 0.8.1

xml-rs based deserializer for Serde (compatible with 1.0)
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
#![doc = include_str!("lib.md")]

pub mod config;
pub mod de;
mod error;
pub mod ser;
#[cfg(test)]
mod test;

pub use crate::config::SerdeXml;
pub use crate::de::{from_reader, from_str, Deserializer};
pub use crate::error::Error;
pub use crate::ser::{to_string, to_writer, Serializer};

#[doc = include_str!("../README.md")]
#[cfg(doctest)]
pub struct ReadmeDoctests;