Given this structure:
pub enum OldTopicRemoval {
Obsoleted {
old_merge: StagedTopic,
replacement: Option<StagedTopic>,
},
Removed(StagedTopic),
}
I'm seeing docs rendered as:

Which makes it look like Removed is more closely related to the fields of Obsoleted rather than on the same level. It'd be nice if the fields for the Obsoleted variant fields were either indented somehow or collapsed with the description.
Given this structure:
I'm seeing docs rendered as:
Which makes it look like
Removedis more closely related to the fields ofObsoletedrather than on the same level. It'd be nice if the fields for theObsoletedvariant fields were either indented somehow or collapsed with the description.