File tree 1 file changed +5
-1
lines changed
1 file changed +5
-1
lines changed Original file line number Diff line number Diff line change 16
16
//! Especially for nested XML elements, the user must keep track _where_ (how deep)
17
17
//! in the XML document the current event is located.
18
18
//!
19
- //! quick-xml contains optional support of asynchronous reading using [tokio].
19
+ //! quick-xml contains optional support of asynchronous reading and writing using [tokio].
20
+ //! To get it enable the `async-tokio` feature.
20
21
//!
21
22
//! Furthermore, quick-xml also contains optional [Serde] support to directly
22
23
//! serialize and deserialize from structs, without having to deal with the XML events.
24
+ //! To get it enable the `serialize` feature. Read more about mapping Rust types
25
+ //! to XML in the documentation of [`de`] module.
23
26
//!
24
27
//! # Examples
25
28
//!
33
36
//! [StAX]: https://en.wikipedia.org/wiki/StAX
34
37
//! [tokio]: https://tokio.rs/
35
38
//! [Serde]: https://serde.rs/
39
+ //! [`de`]: ./de/index.html
36
40
#![ cfg_attr(
37
41
feature = "document-features" ,
38
42
cfg_attr( doc, doc = :: document_features:: document_features!( ) )
You can’t perform that action at this time.
0 commit comments