bhftbootcamp / Serde.jl

Serde is a Julia library for (de)serializing data to/from various formats. The library offers a simple and concise API for defining custom (de)serialization behavior for user-defined types
Apache License 2.0
31 stars 7 forks source link

Create a unified, extendable interface for serialisers #23

Closed dmitrii-doronin closed 3 months ago

dmitrii-doronin commented 3 months ago

Create a unified, extendable interface for serialisers

Description

At present, the interface functions like ‘ignore_field’, ‘ignore_null’, and others are not mandatory for serialisers. The package should be reorganized to enable the extension of these functions by each serialisation module and to establish a default action.

Tasks