Aptos Iterable Derive
Derives IntoIterator implementations and iterator methods for single-field tuple structs.
Usage
use Iterable;
use HashMap;
;
let config = Config;
// Use in for loops
for in &config
// Or iter() and iter_mut()
config.iter;
The struct must be a tuple struct with exactly one field that implements IntoIterator.