diff --git a/docs/book/content/types/enums.md b/docs/book/content/types/enums.md index 14122b219..736b70d4c 100644 --- a/docs/book/content/types/enums.md +++ b/docs/book/content/types/enums.md @@ -54,3 +54,17 @@ enum StarWarsEpisode { # fn main() {} ``` + +## Supported Macro Attributes (Derive) + +| Name of Attribute | Container Support | Field Support | +|-------------------|:-----------------:|:----------------:| +| context | ✔ | ? | +| deprecated | ✔ | ✔ | +| description | ✔ | ✔ | +| interfaces | ? | ✘ | +| name | ✔ | ✔ | +| noasync | ✔ | ? | +| scalar | ✔ | ? | +| skip | ? | ✔ | +| ✔: supported | ✘: not supported | ?: not available |