Closed
Description
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.