use pin_project::pin_project; #[pin_project(!Unpin)] struct Struct { #[pin] pinned: T, unpinned: U, } fn main() {}