A procedural macro helper for trait implemention for enums.
Add this to your Cargo.toml
:
toml
[dependencies]
derive_utils = "0.1"
and this to your crate root:
```rust
extern crate derive_utils; ```
```rust extern crate deriveutils; extern crate procmacro; extern crate quote; extern crate syn;
use deriveutils::EnumData; use procmacro::TokenStream; use quote::quote; use syn::DeriveInput;
pub fn derive(input: TokenStream) -> TokenStream { let ast: DeriveInput = syn::parse(input).unwrap(); let data = EnumData::from_derive(&ast).unwrap();
let path = syn::parse_str("Iterator").unwrap();
let trait_ = syn::parse2(quote! {
trait Iterator {
type Item;
fn next(&mut self) -> Option<Self::Item>;
fn size_hint(&self) -> (usize, Option<usize>);
}
}).unwrap();
data.make_impl_trait(path, None, trait_)
.unwrap()
.build()
.into()
} ```
When deriving for enum like the following:
```rust
enum Iter { A(A), B(B), } ```
Code like this will be generated:
```rust enum Iter { A(A), B(B), }
impl Iterator for Iter
where
A: Iterator,
B: Iterator
std
std
library.no_std
.
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.