I'm currently running into an issue with the default impl<T> std::convert::From<T> for <T> when it comes to const generics. Currently I have the following:
This however conflicts with the default From implementation from one type to the same type. Can I opt out of that default implementation? Or do I really need to create a custom into method for this?