Cool crate!
I've discovered that declaring structs/enums inside an array isn't possible.
pub struct Config {
input_uid: [struct { name: String}; 3],
output_uid: Vec<struct {name: String}>,
}
output_uid works fine but the input uid doesn't.
Has this just been missed or is implementing this challenging?