schemars/docs/_v0/examples/3-schemars_attrs.md
2024-06-09 19:01:24 +01:00

12 lines
519 B
Markdown

---
title: Using Schemars Attributes
parent: Examples
nav_order: 3
summary: "Deriving JsonSchema on types that use #[schemars] attributes to customise serialization behaviour."
---
# Using Serde Attributes
`#[serde(...)]` attributes can be overriden (or replaced) with `#[schemars(...)]` attributes, which behave identically. You may find this useful if you want to change the generated schema without affecting Serde's behaviour, or if you're just not using Serde.
{% include example_v0.md name="schemars_attrs" %}