1 use pin_project::pin_project;
2 
3 #[pin_project]
4 pub struct TupleStruct<T, U>(#[pin] pub T, pub U);
5 
main()6 fn main() {}
7