auto_enums

Build Status version documentation license Rustc Version

API Documentation

A library for to allow multiple return types by automatically generated enum.

This library provides the following attribute macros:

Usage

Add this to your Cargo.toml:

toml [dependencies] auto_enums = "0.1"

and this to your crate root:

```rust

[macro_use]

extern crate auto_enums; ```

Examples

#[auto_enum]'s basic feature is to wrap the value returned by the last if or match expression by an enum that implemented the specified traits.

Generated code

```rust

[auto_enum(Iterator)] // generats an enum with two variants

fn foo(x: i32) -> impl Iterator { match x { 0 => 1..10, _ => vec![5, 10].into_iter(), } } ```

You can also use #[auto_enum] for expressions and statements.

Generated code

```rust use std::{fs, io, path::Path};

[auto_enum]

fn outputstream(file: Option<&Path>) -> io::Result { #[autoenum(io::Write)] let writer = match file { Some(f) => fs::File::create(f)?, None => io::stdout(), };

Ok(writer)

} ```

#[auto_enum] has several other features. See API Documentation for more details.

Supported traits

#[enum_derive] implements the supported traits and passes unsupported traits to #[derive].

If you want to use traits that are not supported by #[enum_derive], you can use another crate that provides proc_macro_derive, or you can define proc_macro_derive yourself.

Basic usage of #[enum_derive]

``rust //#[enum_derive]implementsIterator, and#[derive]implementsClone`.

[enum_derive(Iterator, Clone)]

enum Foo { A(A), B(B), } ```

[std|core] libraries

Note that some traits have aliases.

[std|core]::ops

[std|core]::convert

[std|core]::iter

[std|core]::fmt

[std|core]::future

std::io

std::error

External libraries

futures(v0.3) (requires "futures" crate feature)

futures(v0.1) (requires "futures01" crate feature)

quote (requires "proc_macro" crate feature)

rayon (requires "rayon" crate feature)

serde (requires "serde" crate feature)

Static methods

These don't derive traits, but derive static methods instead.

Crate Features

Using external libraries (disabled by default)

Known limitations

Rust Version

The current minimum required Rust version is 1.30.

License

Licensed under either of

at your option.

Contribution

Unless you explicitly state otherwise, any contribution intentionally submitted for inclusion in the work by you, as defined in the Apache-2.0 license, shall be dual licensed as above, without any additional terms or conditions.