Enum go_away::types::UnionRepresentation [−][src]
pub enum UnionRepresentation {
AdjacentlyTagged {
tag: String,
content: String,
},
InternallyTagged {
tag: String,
},
ExternallyTagged,
Untagged,
}Expand description
The serialized representation of the union type
See https://serde.rs/enum-representations.html for details
Variants
An adjacently tagged representation
Show fields
An internally tagged representation
Show fields
Fields of InternallyTagged
tag: StringThe name of the tag field
An externally tagged representation
An untagged representation
Trait Implementations
Auto Trait Implementations
impl RefUnwindSafe for UnionRepresentationimpl Send for UnionRepresentationimpl Sync for UnionRepresentationimpl Unpin for UnionRepresentationimpl UnwindSafe for UnionRepresentation