]> git.lizzy.rs Git - rust.git/blob - src/tools/clippy/src/docs/serde_api_misuse.txt
Rollup merge of #101389 - lukaslueg:rcgetmutdocs, r=m-ou-se
[rust.git] / src / tools / clippy / src / docs / serde_api_misuse.txt
1 ### What it does
2 Checks for mis-uses of the serde API.
3
4 ### Why is this bad?
5 Serde is very finnicky about how its API should be
6 used, but the type system can't be used to enforce it (yet?).
7
8 ### Example
9 Implementing `Visitor::visit_string` but not
10 `Visitor::visit_str`.