Hey another #rust #rustlang question...
I've written something like this:
```
impl Values {
fn from_iter(mut iter: impl Iterator<Item=f32>) -> Self {
...
}
}
```
is there a way to write it as an impl From<???> for Value ?
I haven't found a way to make it work...