Skip to main content

rustack_cloudfront_http/xml/
mod.rs

1//! Hand-written XML serialization and deserialization.
2//!
3//! CloudFront restXml is simple enough that we write targeted emitters per
4//! response shape (as opposed to a generic serde-based layer). This keeps
5//! wire fidelity tight and compile times low.
6
7pub mod de;
8pub mod ser;
9pub mod writer;
10
11pub use writer::XmlWriter;