Hi,
I have avro schemas where metadata have been introduced for records.
As written in the doc:
A JSON object, of the form:
{"type": "typeName" ...attributes...}
where typeName is either a primitive or derived type name, as defined below. Attributes not defined in this document are permitted as metadata, but must not affect the format of serialized data.
But has someone a idea how I could generate these metadata as part of an avro trait without serializing them ?
Maybe: #[serde(skip)] to skip both serialization and deserialization ?
Whould you accept a PR with such a feature ?
Hi,
I have avro schemas where metadata have been introduced for records.
As written in the doc:
But has someone a idea how I could generate these metadata as part of an avro trait without serializing them ?
Maybe:
#[serde(skip)]to skip both serialization and deserialization ?Whould you accept a PR with such a feature ?