The system of derives we have now is flexible, but not nice to use.
- Consider using traits instead of duck typing. This will make it easier to manually implement input.
- We could maybe make it better by having a few 'standard' inputs, like FormTextInput that implements ParseAndFormat for all T that has the appropriate string operations.
The system of derives we have now is flexible, but not nice to use.