Documentation fix

Change `skip_serializing` into `skip_serializing_if`.
This commit is contained in:
kmkaplan 2023-02-17 08:05:54 +00:00 committed by GitHub
parent c6da58188c
commit 3f73aa5df5
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -2,7 +2,7 @@
## skip_serializing
Attribute `skip_serializing_if` will skip the serialisation of the field if it is set to `true`. Default value is `false`.
Attribute `skip_serializing` will skip the serialisation of the field if it is set to `true`. Default value is `false`.
- `#[yaserde(skip_serializing = true)]` - Skip serialization of the field.
- `#[yaserde(skip_serializing = false)]` - The field will be serialized. Default value.
@ -136,4 +136,4 @@ fn main() {
```
### Known issues
- Currently, `enum` fields are not working with `skip_serializing_if`: https://github.com/media-io/yaserde/issues/139
- Currently, `enum` fields are not working with `skip_serializing_if`: https://github.com/media-io/yaserde/issues/139