You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository was archived by the owner on Jul 9, 2023. It is now read-only.
Some JSON protocols represent variant types using a common prefix. For example a network result may be transmitted as "NetworkResult_Success" / "NetworkResult_Failure". In Rust we would like to represent such values as enum variants NetworkResult::Success and NetworkResult::Failure. This is possible with Serde rename attributes but somewhat verbose.