aptos-iterable-derive 0.0.1

Derives `IntoIterator` implementations and iterator methods for single-field tuple structs
Documentation
# Aptos Iterable Derive

[![Crates.io](https://img.shields.io/crates/v/aptos-iterable-derive)](https://crates.io/crates/aptos-iterable-derive)
[![docs.rs](https://img.shields.io/docsrs/aptos-iterable-derive)](https://docs.rs/aptos-iterable-derive/latest/aptos_iterable_derive)

Derives `IntoIterator` implementations and iterator methods for single-field tuple structs.

## Usage

```rust
use aptos_iterable_derive::Iterable;
use std::collections::HashMap;

#[derive(Iterable)]
struct Config(HashMap<String, String>);

let config = Config(HashMap::new());

// Use in for loops
for (key, value) in &config { }

// Or iter() and iter_mut()
config.iter();
```

The struct must be a tuple struct with exactly one field that implements `IntoIterator`.