The "Extract struct from enum variant" VSCode refactor drops - comments - doc comments - attributes Before: ```rust pub enum Foo { Bar, Baz { // a comment /// a doc comment #[an_attribute] blee: bool } } ``` After: ```rust pub struct Baz{ pub blee: bool } pub enum Foo { Bar, Baz(Baz) } ```