Procedural macros helper for interacting with cw-storage-plus and cosmwasm-storage.
Auto generate an IndexList
impl for your indexes struct.
```rust
struct TestStruct { id: u64, id2: u32, addr: Addr, }
struct TestIndexes<'a> { id: MultiIndex<'a, u32, TestStruct, u64>, addr: UniqueIndex<'a, Addr, TestStruct>, } ```