A small helper trait to simplify the initialisation of 'indexable' data structures.
```rust use init_trait::Init;
struct House { number: usize }
// [T; N]: Init
asserteq!(road[0].number, 1); asserteq!(road[1].number, 2); assert_eq!(road[2].number, 3); ```
To use this, add it as a dependency to your Cargo.toml:
toml
[dependencies]
init_trait = "0.1.0"