extern crate tokio1_crate as tokio; use auto_enums::enum_derive; enum Enum { A(A), B(B), } impl ::tokio::io::AsyncRead for Enum where A: ::tokio::io::AsyncRead, B: ::tokio::io::AsyncRead, { fn poll_read( self: ::core::pin::Pin<&mut Self>, cx: &mut ::core::task::Context<'_>, buf: &mut ::tokio::io::ReadBuf<'_>, ) -> ::core::task::Poll<::std::io::Result<()>> { unsafe { match self.get_unchecked_mut() { Enum::A(x) => { ::poll_read( ::core::pin::Pin::new_unchecked(x), cx, buf, ) } Enum::B(x) => { ::poll_read( ::core::pin::Pin::new_unchecked(x), cx, buf, ) } } } } } impl ::core::marker::Unpin for Enum where A: ::core::marker::Unpin, B: ::core::marker::Unpin, {} const _: () = { trait MustNotImplDrop {} #[allow(clippy::drop_bounds, drop_bounds)] impl MustNotImplDrop for T {} impl MustNotImplDrop for Enum {} }; fn main() {}