Unify the Nominal type with RowType
Currently, wrapper types (newtypes) in Hydra use the Nominal type, which binds a name to another type. Wrapper types are essentially single-field record types. Record types and union types also bind a name to another (row) type, but they do it by including a typeName field in RowType. Record and union types are essentially just named row types, and should probably use Nominal in the same way that wrapper types do.
Note: rather than create a separate issue, there is also some simplification to be done around the Nominal, Element, Field, FieldType, Name, and FieldName types. E.g. if we rename Nominal to Named, then wrapper types just become Named Type. Record types become Named RowType. Elements become Named Term, etc.
Won't fix. Nominal has been eliminated (in the branch for #125) so as to leave only monomorphic types in Hydra Core.