A library for to allow multiple return types by automatically generated enum.
This library provides the following attribute macros:
#[auto_enum]
Parses syntax, creates the enum, inserts variants, and passes specified traits to #[enum_derive]
.
#[enum_derive]
Implements traits received from #[auto_enum]
.
Add this to your Cargo.toml
:
toml
[dependencies]
auto_enums = "0.1"
and this to your crate root:
```rust
extern crate auto_enums; ```
#[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.
```rust
fn foo(x: i32) -> impl Iterator
You can also use #[auto_enum]
for expressions and statements.
```rust use std::{fs, io, path::Path};
fn outputstream(file: Option<&Path>) -> io::Result
Ok(writer)
} ```
#[auto_enum]
has several other features. See API Documentation for more details.
#[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]implements
Iterator, and
#[derive]implements
Clone`.
enum Foo { A(A), B(B), } ```
Note that some traits have aliases.
[std|core]::ops
Deref
DerefMut
Index
IndexMut
Fn
(nightly-only)FnMut
(nightly-only)FnOnce
(nightly-only)RangeBounds
[std|core]::convert
[std|core]::iter
Iterator
DoubleEndedIterator
ExactSizeIterator
FusedIterator
TrustedLen
(nightly-only)Extend
[std|core]::fmt
Debug
(alias: fmt::Debug
) - note that it is a different implementation from #[derive(Debug)]
.Display
(alias: fmt::Display
)fmt::Binary
fmt::LowerExp
fmt::LowerHex
fmt::Octal
fmt::Pointer
fmt::UpperExp
fmt::UpperHex
fmt::Write
[std|core]::future
Future
- nightly-onlystd::io
std::error
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)
serde::Serialize
- note that it is a different implementation from #[derive(Serialize)]
.These don't derive traits, but derive static methods instead.
Transpose
(requires "transpose_methods"
crate feature) - this derives the following conversion methods.
transpose
- convert from enum<Option<T1>,..>
to Option<enum<T1,..>>
transpose
- convert from enum<Result<T1, E1>,..>
to Result<enum<T1,..>, enum<E1,..>>
transpose_ok
- convert from enum<Result<T1, E>,..>
to Option<enum<T1,..>, E>
Examples:
```rust use std::{fs, io, path::Path};
fn outputstream(file: Option<&Path>) -> io::Result
transpose_err
- convert from enum<Result<T, E1>,..>
to Result<T, enum<E1,..>>
std
no_std
instead.type_analysis
let
binding.Add this to your Cargo.toml
instead:
toml
[dependencies]
auto_enums = { version = "0.1", features = ["type_analysis"] }
Examples:
```rust
fn foo(x: i32) -> impl Iterator
Please be careful if you return another traits with the same name.
transpose_methods
transpose*
methods.futures
- futures(v0.3)
futures01
- futures(v0.1)
proc_macro
- quote
rayon
- rayon
serde
- serde
There needs to explicitly specify the trait to be implemented (type_analysis
crate feature reduces this limitation).
There needs to be marker macros for expressions other than match
and if
.
The current minimum required Rust version is 1.30.
Licensed under either of
at your option.
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.