extern crate futures03_crate as futures;
use auto_enums::enum_derive;
enum Enum {
A(A),
B(B),
}
impl ::futures::io::AsyncWrite for Enum
where
A: ::futures::io::AsyncWrite,
B: ::futures::io::AsyncWrite,
{
#[inline]
fn poll_write(
self: ::core::pin::Pin<&mut Self>,
cx: &mut ::core::task::Context<'_>,
buf: &[u8],
) -> ::core::task::Poll<::std::io::Result> {
unsafe {
match self.get_unchecked_mut() {
Enum::A(x) => {
::poll_write(
::core::pin::Pin::new_unchecked(x),
cx,
buf,
)
}
Enum::B(x) => {
::poll_write(
::core::pin::Pin::new_unchecked(x),
cx,
buf,
)
}
}
}
}
#[inline]
fn poll_write_vectored(
self: ::core::pin::Pin<&mut Self>,
cx: &mut ::core::task::Context<'_>,
bufs: &[::std::io::IoSlice<'_>],
) -> ::core::task::Poll<::std::io::Result> {
unsafe {
match self.get_unchecked_mut() {
Enum::A(x) => {
::poll_write_vectored(
::core::pin::Pin::new_unchecked(x),
cx,
bufs,
)
}
Enum::B(x) => {
::poll_write_vectored(
::core::pin::Pin::new_unchecked(x),
cx,
bufs,
)
}
}
}
}
#[inline]
fn poll_flush(
self: ::core::pin::Pin<&mut Self>,
cx: &mut ::core::task::Context<'_>,
) -> ::core::task::Poll<::std::io::Result<()>> {
unsafe {
match self.get_unchecked_mut() {
Enum::A(x) => {
::poll_flush(
::core::pin::Pin::new_unchecked(x),
cx,
)
}
Enum::B(x) => {
::poll_flush(
::core::pin::Pin::new_unchecked(x),
cx,
)
}
}
}
}
#[inline]
fn poll_close(
self: ::core::pin::Pin<&mut Self>,
cx: &mut ::core::task::Context<'_>,
) -> ::core::task::Poll<::std::io::Result<()>> {
unsafe {
match self.get_unchecked_mut() {
Enum::A(x) => {
::poll_close(
::core::pin::Pin::new_unchecked(x),
cx,
)
}
Enum::B(x) => {
::poll_close(
::core::pin::Pin::new_unchecked(x),
cx,
)
}
}
}
}
}
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() {}