Skip to content
New issue

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

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

Already on GitHub? Sign in to your account

Untagged enum with unit variant #142

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion enum-representations.html
Original file line number Diff line number Diff line change
Expand Up @@ -717,7 +717,7 @@ <h2 id="untagged"><a name="untagged" class="plugin-anchor" href="#untagged"><i c
<p>There is no explicit tag identifying which variant the data contains. Serde will
try to match the data against each variant in order and the first one that
deserializes successfully is the one returned.</p>
<p>This representation can handle enums containing any type of variant.</p>
<p>This representation can handle enums containing any type of variant. However, all unit variants will always serialize as `null`.</p>
<p>As another example of an untagged enum, this enum can be deserialized from
either an integer or an array of two strings:</p>
<pre><code class="lang-rust"><span class="hljs-meta">#[derive(Serialize, Deserialize)]</span>
Expand Down