Skip to content
New issue

Have a question about this project? # for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “#”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? # to your account

Rust enum support #94

Open
angelorodem opened this issue Nov 13, 2024 · 3 comments
Open

Rust enum support #94

angelorodem opened this issue Nov 13, 2024 · 3 comments

Comments

@angelorodem
Copy link

Hi, i could not find the reason on gh issues or in other places,
what is the current limitation that prevents an implementation that is able to Serialize/Deserialize rust non C-like enums?
is that some limitation because it is not possible in no_std or is just a missing feature?

@ryan-summers
Copy link
Member

ryan-summers commented Nov 14, 2024

I had one question when reading this: How does a complex rust enum map into json object representations?

After researching serde-json, it seems to me like this is simply missing implementation. If you'd like to take it on, I'd be happy to review the change!

zeenix added a commit to zeenix/zlink that referenced this issue Feb 26, 2025
This enables `serde_json` dependency, which is needed for deserializing
response messages. This will mean that client-side API will not be
available for `no_std` environments. This isn't as big an issue as it
would seem since typically on micrcontrolers, one would implement
services, not clients. Morever, this limitation will hopefully be lifted
once [`serde-json-core` supports complex enums][ce].

On the bright side, we can now make `serde-json-core` and `heapless`
optional dependencies, which will help `std` users avoid these
dependencies that they are unlikely to otherwise depend on.

This also adds a `embedded` feature, which will enable `heapless` and
`serde-json-core` dependencies. Users must enable either `std` or
`embedded` feature to use this crate.

[ce]: rust-embedded-community/serde-json-core#94
@zeenix
Copy link

zeenix commented Mar 6, 2025

Seems like this is possible without alloc, so we could likely follow what serde-json does (see https://github.com/serde-rs/json/blob/master/tests/test.rs#L496)

Perhaps that's true for JSON de/ser but serde itself only supports externally-tagged enums representation without alloc. This will greatly limit any enum support in this crate, I'm afraid. 😞

While serde_json already supports alloc, its serialisation API requires std and hence it's not very useful. The maintainer of serde_json has also explicitly turned the down possibility of making the ser API work for no_std.

This means that folks who can't do std but are fine with alloc, and need complex enums and/or a generic Value type, can use neither this crate nor serde_json. 😔

So, I wonder if the maintainers would consider adding an optional alloc feature?

@zeenix
Copy link

zeenix commented Mar 7, 2025

While serde_json already supports alloc, its serialisation API requires std and hence it's not very useful. The maintainer of serde_json has also explicitly turned the down possibility of making the ser API work for no_std.

This means that folks who can't do std but are fine with alloc, and need complex enums and/or a generic Value type, can use neither this crate nor serde_json. 😔

Thinking more about this, there is nothing stopping folks from enabling alloc in serde while still using this crate (assuming of course complex enum support is added, which is what this issue is about). Having said that, if most people will have to enable alloc in serde to make full use of this feature, not much point in resisting alloc feature to this crate then, if it gives people very useful features like a generic Value type.

# for free to join this conversation on GitHub. Already have an account? # to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

3 participants