Lines Matching +full:style +full:- +full:mod
1 …github.com/dtolnay/serde-yaml) [![crates-io]](https://crates.io/crates/serde-yaml) [![do…
3 //! [github]: https://img.shields.io/badge/github-8da0cb?style=for-the-badge&labelColor=555555&logo…
4 //! [crates-io]: https://img.shields.io/badge/crates.io-fc8d62?style=for-the-badge&labelColor=55555…
5 //! [docs-rs]: https://img.shields.io/badge/docs.rs-66c2a5?style=for-the-badge&labelColor=555555&lo…
12 //! [Serde]: https://github.com/serde-rs/serde
20 //! fn main() -> Result<(), serde_yaml::Error> {
54 //! fn main() -> Result<(), serde_yaml::Error> {
80 //! fn main() -> Result<(), serde_yaml::Error> {
82 //! - !Newtype 1
83 //! - !Tuple [0, 0, 0]
84 //! - !Struct {x: 1.0, y: 2.0}
91 //! // The last two in YAML's block style instead:
93 //! - !Tuple
94 //! - 0
95 //! - 0
96 //! - 0
97 //! - !Struct
107 //! - Unit # serialization produces this one
108 //! - !Unit
123 clippy::iter_not_returning_iterator, // https://github.com/rust-lang/rust-clippy/issues/8285
124 clippy::ptr_arg, // https://github.com/rust-lang/rust-clippy/issues/9218
125 clippy::question_mark, // https://github.com/rust-lang/rust-clippy/issues/7859
172 mod de;
173 mod error;
174 mod libyaml;
175 mod loader;
176 pub mod mapping;
177 mod number;
178 mod path;
179 mod ser;
180 pub mod value;
181 pub mod with;
184 mod private {