Hacker News new | ask | show | jobs
by ChrisSD 2222 days ago
I think that's a good thing. A C "enum" is just a shorthand for declaring an int alias and some constants. You can do that in Rust easily enough.

A Rust enum is an actual enumeration type, which C does not have. This is far more powerful.

1 comments

It's good thing, but it leads to error in code which must talk to C or network, where enum's are not cast in stone.
You really should not be casting data structures sent over the network directly to local data structures, unless you are using capnproto or another zero copy protocol that does that safely.
You can assign any value to a C enum, they literally are just integers.