auto_enums 0.8.0

A library for to allow multiple return types by automatically generated enum.
Documentation
extern crate tokio1_crate as tokio;

use auto_enums::enum_derive;

#[enum_derive(tokio1::AsyncRead)]
enum Enum<A, B> {
    A(A),
    B(B),
}

fn main() {}