With this docpos proc macro library (⑂roxygen) you can write this tabular beauty:
#[docpos]
enum MyEnum { /// Enumerates the possible jobblers in thingy paradigm.
EnumValue1 ,/// 1 Something is a blue exchange doodad thingy thing.
EnumValueTheSecond,/// 2 Something is meld mould mild mote.
///! 3 Vivamus arcu mauris, interdum nec ultricies vitae, sagittis sit.
EnumValueGamma ,// :( invalid syntax to have ///doc here, use ///! ↑
}
And it will get expanded to the regular mess
/// Enumerates the possible jobblers in thingy paradigm.
enum MyEnum {
/// 1 Something is a blue exchange doodad thingy thing.
EnumValue1,
/// 2 Something is meld mould mild mote.
EnumValueTheSecond,
/// 3 Vivamus arcu mauris, interdum nec ultricies vitae, sagittis sit.
EnumValueGamma,
}