Hi,
I want to use Vec<MetricGroups> as my config file format - but it doesn't seem to work.
Is this a supported feature?
When I use a Vec<String> I get the same issue, but if I wrap it in a struct like so:
struct Config {
string: Vec<String>
}
Then I have no issue.
Hi,
I want to use
Vec<MetricGroups>as my config file format - but it doesn't seem to work.Is this a supported feature?
When I use a
Vec<String>I get the same issue, but if I wrap it in a struct like so:Then I have no issue.