I'm looking to be able to do something like this:
impl<const N: usize, const W: usize> From<Num<W>> for Num<N> where N != W
This isn't valid syntax, but I would assume something similar exists. I tried:
impl<const N: usize, const W: usize> From<Num<W>> for Num<N>
But that gets a:
```error[E0119]: conflicting implementations of trait std::convert::From<Num<_>> for type Num<_>