use pin_project_lite::pin_project; pin_project! { enum Enum { Struct { #[pin] pinned: T, unpinned: U, }, Unit, } } fn main() {}