actix-xml
XML extractor for actix-web.
This crate provides struct Xml that can be used to extract typed information from request's body.
Under the hood, quick-xml is used to parse payloads.
Example
use ;
use Xml;
use Deserialize;
/// deserialize `Info` from request's body
async
Features
encoding: support non utf-8 payloadcompress-brotli(default): enable actix-webcompress-brotlisupportcompress-gzip(default): enable actix-webcompress-gzipsupportcompress-zstd(default): enable actix-webcompress-zstdsupport
If you've removed one of the compress-* feature flag for actix-web, make sure to remove it by
setting default-features=false, or it will be re-enabled for actix-web.
Version Support
0.1.x- supportsactix-web 3.3.x0.2.0-beta.0- supportsactix-web 4.0.0.beta.80.2.0- supportsactix-web 4.0.x
License
MIT