Lines Matching +full:rustc +full:- +full:serialize
1 //! A [serde]-compatible [TOML]-parsing library
55 //! implementations of the `Deserialize`, `Serialize`, `Deserializer`, and
59 //! * `Serialize for Table`
61 //! * `Serialize for Value`
63 //! * `Serialize for Datetime`
69 //! This means that you can use Serde to deserialize/serialize the
107 //! You can serialize types in a similar fashion:
111 //! use serde::Serialize;
113 //! #[derive(Serialize)]
120 //! #[derive(Serialize)]
138 //! [TOML]: https://github.com/toml-lang/toml
145 // Makes rustc abort compilation if there are any unsafe blocks in the crate.
146 // Presence of this annotation is picked up by tools such as cargo-geiger
178 // Shortcuts for the module doc-comment