-
Notifications
You must be signed in to change notification settings - Fork 146
Closed
Description
I am trying to serialize an enum with rmp-serde
and I am running into an error:
`Err` value: DeserializeError(Syntax("syntax error: expected an enum"))`
which seems to come from serde's default implementation of visit_enum
.
I see that you have tests surround serializing enums, which is almost exactly what I am trying to do. I am wondering if there is something that I am missing here. Taking a look at your Travis builds it does not seem like those tests are being run there.
I already have serde_macros
enabled and have custom_derive
and plugin
features, not sure what else I need.
Any help would be much appreciated!